shell script 基本文法

來源:互聯網
上載者:User

標籤:

 幾個符號的意義
$#:代表後接的參數『個數』,以上表為例這裡顯示為『 4 』;
[email protected]:代表『 "$1" "$2" "$3" "$4" 』之意,每個變數是獨立的(用雙引號括起來);
$*:代表『 "$1c$2c$3c$4" 』,其中 c 為分隔字元,預設為空白鍵, 所以本例中代表『 "$1 $2 $3 $4" 』之意。
shift
[[email protected] scripts]# vi sh08.sh
#!/bin/bash
echo "Total parameter number is ==> $#"
echo "Your whole parameter is   ==> ‘[email protected]‘"
shift   # 進行第一次『一個變數的 shift 』
echo "Total parameter number is ==> $#"
echo "Your whole parameter is   ==> ‘[email protected]‘"
shift 3 # 進行第二次『三個變數的 shift 』
echo "Total parameter number is ==> $#"
echo "Your whole parameter is   ==> ‘[email protected]‘"
結果
[[email protected] scripts]# sh sh08.sh one two three four five six #給予六個參數
Total parameter number is ==> 6   #最原始的參數情況
Your whole parameter is   ==> ‘one two three four five six‘
Total parameter number is ==> 5   #第一次位移,看底下發現第一個 one 不見了
Your whole parameter is   ==> ‘two three four five six‘
Total parameter number is ==> 2   #第二次位移掉三個,two three four 不見了
Your whole parameter is   ==> ‘five six‘
if …. then
if [ 條件判斷式一 ]; then
 當條件判斷式一成立時,可以進行的指令工作內容;
elif [ 條件判斷式二 ]; then
 當條件判斷式二成立時,可以進行的指令工作內容;
else
 當條件判斷式一與二均不成立時,可以進行的指令工作內容;
fi
&& 代表 AND ;
|| 代表 or ;
所以,在使用中括弧的判斷式中, && 及 || 就與指令下達的狀態不同了。
[ "$yn" == "Y" -o "$yn" == "y" ] 可替換為 [ "$yn" == "Y" ] || [ "$yn" == "y" ]
case … esac
case  $變數名稱 in
  "第一個變數內容")
 程式段
 ;;
  "第二個變數內容")
 程式段
 ;;
  *)
 不包含第一個變數內容與第二個變數內容的其他程式執行段
 exit 1
 ;;
esac
function
function fname() {
 程式段
}
迴圈
while [ condition ]
do
 程式段落
done
until [ condition ]
do
 程式段落
done
for var in con1 con2 con3 ...
do
 程式段
done
for (( 初始值; 限制值; 執行步階 ))
do
 程式段
done

shell script 基本文法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.