小編給大家分享一下Shell中如何實(shí)現(xiàn)流程控制,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括鐵力網(wǎng)站建設(shè)、鐵力網(wǎng)站制作、鐵力網(wǎng)頁(yè)制作以及鐵力網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專(zhuān)注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,鐵力網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到鐵力省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
在Linux編程中,流程控制語(yǔ)句基本為 if 、for、while、until、case等條件的控制語(yǔ)句
if常用語(yǔ)法結(jié)構(gòu)
If (表達(dá)式); then echo .......... else echo .......... fi
演示:
#!/bin/bash num=10 if ((${num} > 4));then echo "${num} 大于 3" fi if test [${num} > 4];then echo "${num} 大于 4" fi
#!/bin/bash num=10; if [ $num -lt 8 ];then echo "${num} 小于 8" elif [ ${num} -eq 10 ];then echo "${num} 等于 10" elif [ ${num} -gt 11 ];then echo "${num} 大于 10" else echo "沒(méi)有符合的條件" fi;
for循環(huán)語(yǔ)法結(jié)構(gòu)
For 變量 in 字符串 do echo "" done
演示:
#!/bin/bash #定義一個(gè)數(shù)組 val=(1 2 3 4 5 6) for i in ${val[*]} #也可以直接 in `seq 6` do echo "this is num: $i" done
輸出結(jié)果:
#打印結(jié)果: this is num: 1 this is num: 2 this is num: 3 this is num: 4 this is num: 5 this is num: 6
演示2:
#!/bin/bash #對(duì)查找文件批量打包 for i in `find /var/log -name “*.log”` do tar –czf 2019log.tgz $i done
while語(yǔ)法結(jié)構(gòu)
while (條件判斷) do echo "" done
演示:
#!/bin/sh i=1; while(( $i <= 10 ));do #或者while [ $i -le 10 ];do echo $i; let "i++" # 或者((i++)); done;
輸出結(jié)果:
1 2 . . 10
演示:
[root@localhost opt]# cat test.sh #!/bin/sh #打印文件內(nèi)容 while read line do echo $line; done < /etc/hosts
until循環(huán)執(zhí)行命令是需要條件為true時(shí)才退出,否知一直循環(huán),[]主要判斷true和false
until循環(huán)與while循環(huán)在處理方式相反,且while循環(huán)優(yōu)于until循環(huán)
演示:
#!/bin/bash i=1; until [ ! $i -le 10 ];do echo $i; let "i++" #((i++)) or (i=`expr $i + 1`) done;
簡(jiǎn)單演示:
#!/bin/sh #author: case $1 in 1|2|3|4) echo "你輸入數(shù)字為$1" ;; *) echo "Usage:{$0 1 | 2 | 3 | 4 | help}" echo "你輸入數(shù)字不在服務(wù)區(qū)" ;; esac
簡(jiǎn)單演示
注意:
break 直接跳出while循環(huán)體 continue 只會(huì)跳出當(dāng)前循環(huán),不會(huì)跳出while循環(huán)
#!/bin/sh #author: while : do echo "------------------------" echo '輸入 1-4之間的數(shù)字:' echo '你輸入的數(shù)字為:' read num case $num in 1|2|3|4) echo "你輸入數(shù)字為:${num} !!" ;; *) #echo "Usage:{$0 1 | 2 | 3 | 4 | help}" echo "------------------------" echo "你輸入數(shù)字不在服務(wù)區(qū)" break # continue ;; esac done
#!/bin/sh #author: PS3="What you like most of the open source system?" select i in windows Linux Max do echo "Your Select System: "$i done
#目錄是否存在 if [ ! -d $BAK_DIR ];then mkdir -p $BAK_DIR fi #test判斷文件 if test -e ${BAK_DIR} then echo '文件存在!' else echo '文件不存在!' fi
看完了這篇文章,相信你對(duì)“Shell中如何實(shí)現(xiàn)流程控制”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!