linux入門-shell(.sh)指令碼編寫和執行
阿新 • • 發佈:2019-02-13
編寫第一個shell指令碼
在gedit中編寫.sh格式的檔案,儲存為a.sh。
程式碼:
#! /bin/bash # employ bash shell
player1=xiaoming # define a player1
player2=ken
echo "Game start! $player1 $player2" # echo is used to printf in terminal
在終端呼叫指令碼,定位到目錄,然後輸入:
bash a.sh
看到列印結果如上所示。
編寫第一個if/else指令碼
編寫的if/else如下:
if和 ; 之間的程式碼
ls -l a.sh
是用來判斷當前的目錄下是否存在a.sh這個檔案。if和else的基本格式如下所示,
if command ; then
code1
else
code2
fi
在終端呼叫的結果如下,可以看到輸出了
ls return true
再看一個if/else指令碼
如下指令碼,if/else格式和上面格式一致,重點看下 if 和 ;間的那個命令,命令開始以 [,後面有4個引數 $1,=,me,]
輸出的結果如下所示:
用 = 來判斷輸入的字串是否等於me。其他的常用判斷引數見下圖:
看一個for迴圈
for迴圈的格式如下指令碼所示:
#! /bin/bash # employ bash shell
for num in 1 2 3 4 5 six
do
echo "num=$num"
for(( num=1; num<7; num++)) # method2
do
echo "num=$num"
done
while迴圈
while迴圈的基本格式如下:
#! /bin/bash
i=7
j=10
while [ $i -lt $j ]
do
echo "num1 = $i, num2=$j"
((i++))
done