1. 程式人生 > >linux shell 01

linux shell 01

echo chm shel 權限 變量 nbsp this rip body

.sh 文件執行權限賦予 chmod ( -u root )-x script.sh

單引號 無視變量 雙引號 執行變量

例:

a1=‘phone‘

a2=‘this is a ${a1}‘

echo ${a2}

結果: this is a ${a1}

a1=‘phone‘

a2="this is a ${a1}"

echo ${a2}

結果: this is a phone

linux shell 01