for語句shell
格式1:if 條件 ; then 語句; fibash
格式2:if 條件; then 語句; else 語句; fispa
格式3:if …; then … ;elif …; then …; else …; ficode
邏輯判斷表達式字符串
能夠使用 && || 結合多個條件input
[ -f file ]判斷是不是普通文件,且存在it
判斷是不是目錄,且存在io
判斷文件或目錄是否存在變量
[ -r file ] 判斷文件是否可讀sed
[ -w file ] 判斷文件是否可寫
[ -x file ] 判斷文件是否可執行
而且&& 前一條命令執行成功纔會繼續執行以後的命令
或者 || 前面命令不成功時,執行後面的命令
-z 表示變量爲空
-n表示變量不爲空
if grep -q '123' 1.txt; then 表示若是1.txt中含有'123'的行時會怎麼樣
if [ ! -e file ]; then 表示文件不存在時會怎麼樣
if (($a<1)); then …等同於 if [ $a -lt 1 ]; then…
[ ] 中不能使用<,>,==,!=,>=,<=這樣的符號
case格式
變量名 in value1) command ;; value2) command ;; *) commond ;; esac
在case程序中,能夠在條件中使用|,表示或的意思, 好比
2|3) command ;;
腳本案例
目的:用戶輸入一個數字,而後用腳本去判斷這個數字的範圍
#!/bin/bash read -p "Please input a number: " n #read 讓用戶輸出一些字符串;賦值給最後一個變量;這裏的賦值是「n」 if [ -z "$n" ] //變量n 爲空 then echo "Please input a number." exit 1 //「exit 1」表示執行該部分命令後的返回echo $?的值 fi n1=`echo $n|sed 's/[0-9]//g'` //肯定變量n是否爲純數字,若是是數字,則清空 if [ ! -z "$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 input value exceeds the calculation range.The number range is 0-100." ;; esac