打開文本編輯器(可使用 vi/vim 命令來建立文件),新建一個文件 test.sh,擴展名爲 sh(sh表明shell),擴展名並不影響腳本執行,見名知意就好,若是你用 php 寫 shell 腳本,擴展名就用 php 好了。php
輸入一些代碼,第一行通常是這樣:linux
#!/bin/bash echo "Hello World !"
==#!== 是一個約定的標記,它告訴系統這個腳本須要什麼解釋器來執行,即便用哪種 Shell。 echo 命令用於向窗口輸出文本。shell
運行 Shell 腳本有兩種方法:編程
一、做爲可執行程序 將上面的代碼保存爲 test.sh,並 cd 到相應目錄:vim
chmod +x ./test.sh #使腳本具備執行權限 ./test.sh #執行腳本
注意,必定要寫成 ==./test.sh==,而不是 test.sh,運行其它二進制的程序也同樣,直接寫 test.sh,linux 系統會去 PATH 裏尋找有沒有叫 test.sh 的,而只有 /bin, /sbin, /usr/bin,/usr/sbin 等在 PATH 裏,你的當前目錄一般不在 PATH 裏,因此寫成 test.sh 是會找不到命令的,要用 ./test.sh 告訴系統說,就在當前目錄找。bash
二、做爲解釋器參數 這種運行方式是,直接運行解釋器,其參數就是 shell 腳本的文件名,如:編輯器
/bin/sh test.sh /bin/php test.php
這種方式運行的腳本,不須要在第一行指定解釋器信息,寫了也沒用。測試
sh (全稱 Bourne Shell): 是UNIX最初使用的 shell,並且在每種 UNIX 上均可以使用。 Bourne Shell 在 shell 編程方面至關優秀,但在處理與用戶的交互方面作得不如其餘幾種 shell。命令行
bash(全稱 Bourne Again Shell): LinuxOS 默認的,它是 Bourne Shell 的擴展。 與 Bourne Shell 徹底兼容,而且在 Bourne Shell 的基礎上增長了不少特性。能夠提供命令補全,命令編輯和命令歷史等功能。它還包含了不少 C Shell 和 Korn Shell 中的優勢,有靈活和強大的編輯接口,同時又很友好的用戶界面。code
csh(全稱 C Shell): 是一種比 Bourne Shell更適合的變種 Shell,它的語法與 C 語言很類似。
Tcsh: 是 Linux 提供的 C Shell 的一個擴展版本。 Tcsh 包括命令行編輯,可編程單詞補全,拼寫校訂,歷史命令替換,做業控制和相似 C 語言的語法,他不只和 Bash Shell 提示符兼容,並且還提供比 Bash Shell 更多的提示符參數。
ksh (全稱 Korn Shell): 集合了 C Shell 和 Bourne Shell 的優勢而且和 Bourne Shell 徹底兼容。
pdksh: 是 Linux 系統提供的 ksh 的擴展。 pdksh 支持人物控制,能夠在命令行上掛起,後臺執行,喚醒或終止程序。
[root@aminglinux-01 ~]# a=5 [root@aminglinux-01 ~]# if [ $a -gt 3 ] > then > echo ok > fi ok [root@aminglinux-01 ~]# if [ $a -gt 3 ]; then echo ok; fi ok
寫成腳本
[root@aminglinux-01 shell]# vi if1.sh #!/bin/bash a=5 if [ $a -gt 3 ] then echo ok fi
運行測試
[root@aminglinux-01 shell]# sh if1.sh ok
[root@aminglinux-01 shell]# vim if2.sh #!/bin/bash a=2 if [ $a -gt 3 ] then echo ok else echo no ok fi
測試,-x 是查看執行過程
[root@aminglinux-01 shell]# sh if2.sh no ok [root@aminglinux-01 shell]# sh -x if2.sh + a=2 + '[' 2 -gt 3 ']' + echo no ok no ok [root@aminglinux-01 shell]#
當a大於1時候顯示爲>1 ,當a小於6時候顯示<6 && >1 。都沒有知足顯no ok
[root@aminglinux-01 shell]# vim if3.sh #!/bin/bash a=5 if [ $a -gt 1 ] then echo ">1" elif [ $a -lt 6 ] then echo "<6 && >1" else echo no ok fi
-gt 大於
-lt 小於
-eq 等於
-ge 大於等於
-le 小於等於
[] 括號中間都要用空格分開
可使用&& || 結合多個條件
設置f爲這個目錄,判斷若是有這個目錄,顯示exist,若是沒有建立這個目錄
#!/bin/bash f="/tmp/aminglinux" if [ -f $f ] then echo $f exist else touch $f fi
[root@aminglinux-01 shell]# sh -x file1.sh + f=/tmp/aminglinux + '[' -f /tmp/aminglinux ']' + touch /tmp/aminglinux [root@aminglinux-01 shell]# sh file1.sh /tmp/aminglinux exist [root@aminglinux-01 shell]#
#!/bin/bash f="/tmp/aminglinux" if [ -d $f ] then echo $f exist else touch $f fi
讀寫和執行都是針對當前運行腳本的用戶來判斷的。
假如/tmp/lalalala文件被誤刪除,這個腳本執行就會報錯,由於變量沒有值
#!/bin/bash n=`/tmp/lalalala` if [ $n -gt 100 ] then echo lskdjflka fi
因此用 -z 判斷一下
#!/bin/bash n=`/tmp/lalalala` if [ -z "$n" ] then echo error exit elif [ $n -gt 100 ] then echo lskdjflka fi ~
測試後沒有腳本報錯
[root@aminglinux-01 shell]# sh file2.sh file2.sh:行2: /tmp/lalalala: 沒有那個文件或目錄 error
判斷文件不用雙引號,判斷變量須要有雙引號。
case 變量名 in value1) command ;; value2) command ;; *) commond ;; esac
[root@aminglinux-01 shell]# vim 123.sh #!/bin/bash read -p "Please input a number: " n 用戶輸入什麼,n就是什麼 if [ -z "$n" ] 用戶直接回車,什麼沒輸入,變量表示爲空, then echo "Please input a number." 提示輸入 exit 1 這裏的1,是運行完以後 ehco$? 的值 fi n1=`echo $n|sed 's/[0-9]//g'` 這裏輸入若是是字母和數字或者純字母 if [ -n "$n1" ] then echo "Please input a number." 會繼續提示輸入純數字 exit 1 fi if [ $n -lt 60 ] && [ $n -ge 0 ] then tag=1 elif [ $n -ge 60 ] && [ $n -lt 80 ] then tag=2 elif [ $n -ge 80 ] && [ $n -lt 90 ] then tag=3 elif [ $n -ge 90 ] && [ $n -le 100 ] then tag=4 else tag=0 fi case $tag in 1) echo "not ok" ;; 2) echo "ok" ;; 3) echo "ook" ;; 4) echo "oook" ;; *) echo "The number range is 0-100." ;; esac
測試
[root@aminglinux-01 shell]# sh 123.sh Please input a number: 90 oook [root@aminglinux-01 shell]# sh 123.sh Please input a number: Please input a number. [root@aminglinux-01 shell]# sh 123.sh Please input a number: q Please input a number. [root@aminglinux-01 shell]# sh 123.sh Please input a number: 33 not ok
需求:1到100全部數字的和
[root@localhost shell]# vi for1.sh #!/bin/bash sum=0 for i in `seq 1 100` do sum=$[$sum+$i] done echo $sum
查看執行過程
[root@localhost shell]# sh -x for1.sh + sum=0 ++ seq 1 100 + for i in '`seq 1 100`' + sum=1 + for i in '`seq 1 100`' + sum=3 + for i in '`seq 1 100`' + sum=6 + for i in '`seq 1 100`' + sum=10 + for i in '`seq 1 100`' ... + for i in '`seq 1 100`' + sum=5050 + echo 5050 5050 [root@localhost shell]#
列出/etc/下全部的文件和目錄
[root@localhost shell]# vi for2.sh #!/bin/bash cd /etc/ for a in `ls /etc/` do if [ -d $a ] then echo $a ls $a fi done
每隔着半分鐘,檢查一下系統的負載,當系統的負載大於10的時候,就發一封郵件
[root@localhost shell]# vi while1.sh #!/bin/bash while : do load=`w|head -1|awk -F 'load average: ' '{print $2}'|cut -d. -f1` if [ $load -gt 10 ] then top|mail -s "load is high: $load" xxxx@qq.com fi sleep 30 done
#!/bin/bash while : do read -p "Please input a number: " n if [ -z "$n" ] then echo "you need input sth." continue 若是沒有輸入東西,再重新來一遍 fi n1=`echo $n|sed 's/[0-9]//g'` if [ -n "$n1" ] then echo "you just only input numbers." continue fi break done echo $n
#!/bin/bash for i in `seq 1 5` do echo $i if [ $i == 3 ] then break fi echo $i done echo aaaaaaa
執行了break,就跳出了for循環。
忽略continue之下的代碼,直接進行下一次循環
#!/bin/bash for i in `seq 1 5` do echo $i if [ $i == 3 ] then continue fi echo $i done echo $i
#!/bin/bash for i in `seq 1 5` do echo $i if [ $i == 3 ] then exit fi echo $i done echo aaaaaaa
比break還狠,到了exit直接結束腳本。