shell程式設計空格的使用

2021-06-23 07:48:53 字數 1532 閱讀 7055

1.定義變數時, =號的兩邊不可以留空格.

eg:gender=femal————right

gender =femal———–wrong

gender= femal———–wrong

2.條件測試語句 [ 符號的兩邊都要留空格.

eg:if [ $gender = femal ]; then——-right.

echo 「you are femal」;

fi if[ $gender...-----------------------wrong

if [$gender...----------------------wrong.

3.條件測試的內容,如果是字串比較的話, 比較符號兩邊要留空格!

eg:if [ $gender = femal ]; then——-right.

if [ $gender= femal ]; then——–wrong.

if [ $gender=femal ]; then———wrong.

4.如果if 和 then寫在同一行, 那麼,注意, then的前面要跟上 ; 號.如果 then 換行寫, 那麼也沒問題.

eg:if [ $gender = femal ]; then——-right.

if [ $gender = femal ]

then——————————-right.

if [ $gender = femal ] then——-wrong. then前面少了 ; 號.

提示出錯資訊:

syntax error near unexpected token then

同理,還有很多出錯資訊 比如

syntax error near unexpected token fi 等都是這樣引起的.

5.if 後面一定要跟上 then. 同理

elif 後面一定要跟上 then.

不然提示出錯資訊:

syntax error near unexpected token else

1)if 語句後面需要跟著then,同時前面要有分號;

2) 空格非常重要,shell 會認為空格前的為乙個命令,如果a=3 認為是賦值操作,如果寫成a = 3,那麼就會認為a為乙個命令 this=`ls -l |grep 『^-』 | wc -l `

3) 操作符之間要用空格分開 ,如 test ! -d $1,其中的!和-d就要用空格分開

空格是命令解析中的重要分隔符

6. 命令和其後的引數或物件之間一定要有空格

if [ -x"~/workspace/shell/a.sh" ];then

只有 -x 後有空格才表示緊跟其後的字串是否指向乙個可執行的檔名,否則就成了測試 -x"~/workspace/shell/a.sh" 這個字串是不是空。

7.取變數值的符號'$'和後邊的變數或括號不能有空格

學習筆記 shell 程式設計中空格的使用

1.定義變數時,號的兩邊不可以留空格.eg gender femal right gender femal wrong gender femal wrong 2.條件測試語句 符號的兩邊都要留空格.eg if gender femal then right.echo you are femal fi...

shell 程式設計中空格的使用方法介紹

1.定義變數時,號的兩邊不可以留空格.eg gender femal right gender femal wrong gender femal wrong 2.條件測試語句 符號的兩邊都要留空格.eg if gender femal then right.echo you are femal fi...

程式設計中空格的使用

空行 l 空行起著分隔程式段落的作用。空行得體 不過多也不過少 將使程式的布局更加清晰。空行不會浪費 記憶體,雖然列印含有空行的程式是會多消耗一些紙張,但是值得。所以不要捨不得用空行。l 在每個類宣告之後 每個函式定義結束之後都要加空行。l 在乙個函式體內,邏揖上密切相關的語句之間不加空行。行 l ...