前言 :
我們可以使用任意一種文字編輯器,比如gedit、kedit、emacs、vi等來編寫shell腳本,它必須以如下行開始(必須放在文件的第一行):
符號 #! 用來告訴系統如何執行該腳本的程序,本例使用 /bin/sh. 編輯結束並保存後,如果要執行該腳本,必須先使其可執行 :
此後在該腳本所在目錄下,輸入 ./filename 即可執行該腳本.
變量賦值和引用 :
Shell編程中,使用變量無需事先聲明,同時變量名的命名須遵循如下規則 :
要取用一個變量的值, 只需在變量名前面加一個 $ ( 注意: 給變量賦值的時候,不能在"="兩邊留空格 )
- test01.sh :
- #!/bin/sh
- # Note : Assing value to variable
- a="Hello world" # Don't keep white space around '='
- # Print variable a
- echo "A is: $a"
有時候變量名可能會和其它文字混淆,比如 :
- num=2
- echo "this is the $numnd"
- test02.sh :
- #!/bin/sh
- num=2
- echo "this is the ${num}nd"
需要注意shell的默認賦值是字符串賦值. 比如 :
- var=1
- var=$var+1
- echo $var
- test03.sh
- #!/bin/sh
- var1=1
- var2=$(($var1+1))
- echo "var1=$var1"
- echo "var2=$var2"
Shell裡的流程控制 :
- if 語句
"if" 表達式如果條件為真,則執行then後的部分 :
- if ....; then
- ....
- elif ....; then
- ....
- else
- ....
- fi
執行 man test 可以查看所有測試表達式可以比較和判斷的類型. 下面是一個簡單的 if 語句 :
- test04.sh :
- #!/bin/sh
- if [ ${SHELL} = "/bin/bash" ]; then
- echo "Your login shell is the bash."
- else
- echo "Your login shell is not bash but '${SHELL}'"
- fi
- && 和 ||操作符 :
熟悉 C語言 的朋友可能會喜歡下面的表達式 :
- [ -f "/etc/shadow" ] && echo "This computer uses shadow passwords"
- test05.sh :
- #!/bin/sh
- mailfolder=/var/spool/mail/james
- [ -r "$mailfolder" ] || { echo "Can not read $mailfolder" ; exit 1; }
- echo "$mailfolder has mail from:"
- grep "^From " $mailfolder
- case 語句
case表達式可以用來匹配一個給定的字符串,而不是數字(可別和C語言裡的switch...case混淆):
- case ... in
- ...) do something here
- esac
我們利用這點寫了一個名為 smart zip 的腳本,該腳本可以自動解壓 bzip2, gzip和zip 類型的壓縮文件 :
- test06.sh :
- #!/bin/sh
- ftype=`file "$1"` # Note ' and ` is different
- case "$ftype" in
- "$1: Zip archive"*)
- unzip "$1" ;;
- "$1: gzip compressed"*)
- gunzip "$1" ;;
- "$1: bzip2 compressed"*)
- bunzip2 "$1" ;;
- *) echo "File $1 can not be uncompressed with smartzip";;
- esac
$1 就是字符串"test01.tar.gz"
- select語句
select表達式是bash的一種擴展應用,擅長於交互式場合。用戶可以從一組不同的值中進行選擇 :
- select var in ... ; do
- break;
- done
- .... now $var can be used ....
- #!/bin/sh
- echo "What is your favourite OS?"
- select var in "Linux" "Gnu Hurd" "Free BSD" "Other"; do
- break;
- done
- echo "You have selected $var"
- while/for循環
在shell中,可以使用如下循環 :
- while ...; do
- ....
- done
for循環會查看一個字符串列表(字符串用空格分隔),並將其賦給一個變量 :
- for var in ....; do
- ....
- done
- test08.sh :
- #!/bin/sh
- # list a content summary of a number of RPM packages
- # USAGE: showrpm rpmfile1 rpmfile2 ...
- # EXAMPLE: showrpm /cdrom/RedHat/RPMS/*.rpm
- for rpmpackage in $*; do
- if [ -r "$rpmpackage" ];then
- echo "=============== $rpmpackage =============="
- rpm -qi -p $rpmpackage
- else
- echo "ERROR: cannot read file $rpmpackage"
- fi
- done
Shell 裡的一些特殊符號 :
- 引號
在向程序傳遞任何參數之前,程序會擴展通配符和變量。這裡所謂的擴展是指程序會把通配符(比如*)替換成適當的文件名,把變量替換成變量值。我們可以使用引號來防止這種擴展,先來看一個例子,假設在當前目錄下有兩個jpg文件 : mail.jpg和tux.jpg
- #!/bin/sh
- echo *.jpg
引號(單引號和雙引號)可以防止通配符*的擴展 :
- #!/bin/sh
- echo "*.jpg"
- echo '*.jpg'
其中單引號更嚴格一些,它可以防止任何變量擴展;而雙引號可以防止通配符擴展但允許變量擴展 :
- test09.sh :
- #!/bin/sh
- echo $SHELL
- echo '$SHELL'
- echo "$SHELL"
此外還有一種防止這種擴展的方法,即使用轉義字符——反斜桿 '\ '
- echo \*.jpg
- echo \$SHELL
當要將幾行文字傳遞給一個命令時,用 help documents 是一種不錯的方法。對每個腳本寫一段幫助性的文字是很有用的,此時如果使用help documents就不必用echo函數一行行輸出。Help document 以 << 開頭,後面接上一個字符串,這個字符串還必須出現在help document的末尾. 下面是一個例子,在該例子中,我們對多個文件進行重命名,並且使用help documents 打印幫助 :
- test10.sh :
- #!/bin/sh
- # we have less than 3 arguments. Print the help text:
- if [ $# -lt 3 ] ; then
- cat << HELP
- ren -- renames a number of files using sed regular expressions USAGE: ren 'regexp' 'replacement' files...
- EXAMPLE: rename all *.HTM files in *.html:
- ren 'HTM$' 'html' *.HTM
- HELP
- exit 0
- fi
- OLD="$1"
- NEW="$2"
- # The shift command removes one argument from the list of
- # command line arguments.
- shift
- shift
- # $* contains now all the files:
- for file in $*; do
- if [ -f "$file" ] ; then
- newfile=`echo "$file" | sed "s/${OLD}/${NEW}/g"`
- if [ -f "$newfile" ]; then
- echo "ERROR: $newfile exists already"
- else
- echo "renaming $file to $newfile ..."
- mv "$file" "$newfile"
- fi
- fi
- done
Shell 裡的函數 :
如果你寫過比較複雜的腳本,就會發現可能在幾個地方使用了相同的代碼,這時如果用上函數,會方便很多。函數的大致樣子如下 :
- functionname()
- {
- # inside the body $1 is the first argument given to the function
- # $2 the second ...
- body
- }
- test11.sh :
- #!/bin/sh
- help()
- {
- cat << HELP
- xtitlebar -- change the name of an x<200b><200b>term, gnome-terminal or kde konsole 200b>200b>
- USAGE: xtitlebar [-h] "string_for_titelbar"
- OPTIONS: -h help text
- EXAMPLE: xtitlebar "cvs"
- HELP
- exit 0
- }
- # in case of error or if -h is given we call the function help:
- [ -z "$1" ] && help
- [ "$1" = "-h" ] && help
- # send the escape sequence to change the xterm titelbar:
- echo -e "\033]0;$1\007"
命令行參數 :
我們已經見過 $* 和 $1, $2 ... $9 等特殊變量,這些特殊變量包含了用戶從命令行輸入的參數。迄今為止,我們僅僅了解了一些簡單的命令行語法(比如一些強制性的參數和查看幫助的-h選項)。但是在編寫更複雜的程序時,您可能會發現您需要更多的自定義的選項。通常的慣例是在所有可選的參數之前加一個減號,後面再加上參數值 (比如文件名).
有好多方法可以實現對輸入參數的分析,但是下面的使用case表達式的例子無疑是一個不錯的方法 :
- test12.sh :
- #!/bin/sh
- help()
- {
- cat << HELP
- This is a generic command line parser demo.
- USAGE EXAMPLE: cmdparser -l hello -f -- -somefile1 somefile2
- HELP
- exit 0
- }
- while [ -n "$1" ]; do
- case $1 in
- -h) help;shift 1;; # function help is called
- -f) opt_f=1;shift 1;; # variable opt_f is set
- -l) opt_l=$2;shift 2;; # -l takes an argument -> shift by 2
- --) shift;break;; # end of options
- -*) echo "error: no such option $1. -h for help";exit 1;;
- *) break;;
- esac
- done
- echo "opt_f is $opt_f"
- echo "opt_l is $opt_l"
- echo "first arg is $1"
- echo "2nd arg is $2"
這個腳本是如何工作的呢?腳本首先在所有輸入命令行參數中進行循環,將輸入參數與case表達式進行比較,如果匹配則設置一個變量並且移除該參數。根據unix系統的慣例,首先輸入的應該是包含減號的參數.
腳本調試 :
最簡單的調試方法當然是使用echo命令。你可以在任何懷疑出錯的地方用echo打印變量值,這也是大部分shell程序員花費80%的時間用於調試的原因。Shell腳本的好處在於無需重新編譯,而插入一個echo命令也不需要多少時間.
shell也有一個真正的調試模式,如果腳本"test13.sh"出錯,可以使用如下命令進行調試 :
上述命令會執行該腳本,同時顯示所有變量的值與執行過程.
shell還有一個不執行腳本只檢查語法的模式,命令如下 :
這個命令會返回所有語法錯誤.
補充說明 :
* 鳥哥 Linux 私房菜 : 第十三章、學習 Shell Scripts
沒有留言:
張貼留言