下面給大家介紹的有關循環語句在bash編程中用法的詳細解析,你可能還不知道,下面我門一起來看看,希望對需要的朋友有所幫助! 1.if 是單分支語句,使用格式如下: if condition ; then statement ….. fi 2.if … else 是雙分支語句,使用格式如下: if condition ; then statement …. else statement …. fi 3.if …elif…elif…else 是多分支語句,使用格式如下: if condition ; then statement …. elif condition ; then statement ….. elif condition ; then statement ….. . . . else statement …. fi 4.while 語句是循環語句,當條件滿足的情況下才循環,不滿足則退出循環,使用格式如下: while condition ; do statement ….. done 5.until 語句也是循環語句,當條件不滿足的情況下循環,滿足則不循環,使用格式如下: until condition ; do statement ….. done 6.case 也是循環語句,使用格式如下: case $var(變量) ; in value1) ……
value2) …..
*)
.. .. .. esac
腳本練習:
1.計算100以內所有能被3整除的正整數的和。 #!/bin/bash declare -i sum=0 for I in {1..100}; do if [ $[$I%3] -eq 0 ]; then let sum+=$I fi done echo " the sum is :$sum" 2.計算100以內所有奇數的和以及所有偶數的和 #!/bin/bash # echo "exercise" declare -i sum1=0 declare -i sum2=0 for I in {1..100}; do if [ $[$I%2] -eq 0 ]; then let sum1+=$I else let sum2+=$I fi done echo " the even sum is :$sum1" echo " the oddnumber sum is :$sum2" 3.判斷/var/log下的文件的類型: 如果是普通文件,則說明其為普通文件; 如果是目錄文件,則說明其為目錄文件; 如果是符號鏈接文件,則說明其為符號鏈接文件; 否則,說明文件類型無法識別; #!/bin/bash file1=/var/log/* for file in $file1 ; do if [ -f $file ]; then echo "$file is common file" elif [ -d $file ]; then echo "$file is directory file" else echo "$file is unknow" fi done 4.寫一個腳本,分別顯示當前系統上所有默認shell為bash的用戶和默認shell為 /sbin/nologin的用戶 并統計各類shell下的用戶總數,顯示結果形如:bash,3user,they are:root,redhat,gentoo nologn,2user,they are:bin,ftp #!/bin/bash file=/etc/passwd bsh='/bin/bash' nobsh='/sbin/nologin' use=`cat $file | cut -d: -f1` declare -i d1=0 declare -i d2=0 for I in $use ; do s=`grep "^$I:" $file | cut -d: -f7` if [ "$s" = $bsh ] ; then let d1=$d1+1 muser=$I\,$muser elif [ "$s" = $nobsh ] ; then let d2=$d2+1 suser=$I\,$suser fi done echo "BASH,$d1 users ,they are:" echo $muser echo echo "NOLOGIN,$d2 users ,they are:" echo $suser 5.寫一個腳本: (1)如果不存在,就創建文件/tmp/maintenance;如果存在,就事先刪除 (2)在文件/tmp/maintenance中添加如下內容: 172.16.0.6 172.16.0.17 172.16.0.20 (3)測試172.16.0.0/16網絡內的所有主機是否在線,如果在線就顯示其在線,如果此主機 在/tmp/maintenance文件中,就顯示其正處于維護狀態;否則,就顯示其狀態未知; #!/bin/bash file=/tmp/maintenace if [ -e $file ]; then rm -rf $file &> /dev/null fi touch $file cat >> $file << EOF 172.16.0.6 172.16.0.17 172.16.0.20 EOF bnet=172.16 for net in {0..254} ; do for host in {1..254} ; do if ping -c1 -W1 $bnet.$net.$host &> /dev/null ; then echo "$bnet.$net.$host is up." elif grep "$bnet.$net.$host$" $file &> /dev/null ;then echo "$bnet.$net.$host is under maintenance." else echo "$bnet.$net.$host state is unknow." fi done done 6寫一個腳本,完成以下功能: (1)、提示用戶輸入一個用戶名; (2)、顯示一個菜單給用戶,形如: U|u show UID G|g show GID S|s show SHELL Q|q quit (3)、提醒用戶選擇一個選項,并顯示其所選擇的內容;如果用戶給的是一個非上述所提示的選項,則提醒用戶給出的選項錯誤,并請其重新選擇后執行; 第一種方法: #!/bin/bash read -p "Enter a user name:" username ! id $username &> /dev/null && echo " Come on ,the user you input unexit" && exit 9 cat << EOF U|u show UID G|g show GID S|s show SHELL Q|q quit EOF read -p "Enter your choice:" op case $op in U|u) id -u $username;; G|g) id -g $username;; S|s) grep "^$username\>" /etc/passwd | cut -d: -f7;; Q|q) exit 8 ;; *) echo "input option wrong ,quit" exit 9
esac 第二種方法: #!/bin/bash read -p "Enter a user name:" username ! id $username &> /dev/null && echo "Come on ,you input user notexit" && exit 9 cat << EOF U|u show UID G|g show GID S|s show SHELL Q|q quit EOF read -p "Enter your option:" op while true; do case $op in U|u) id -u $username break
G|g) id -g $username break
S|s) grep "^$username\>" /etc/passwd | cut -d: -f7 break
Q|q) exit 7 ;; *) read -p "Wrong option,Enter a right option:" op ;; esac done 7寫一個腳本: (1)、判斷一個指定的腳本是否是語法錯誤;如果有錯誤,則提醒用戶鍵入Q或者q無視錯誤并退出,其它任何鍵可以通過vim打開這個指定的腳本; (2)、如果用戶通過vim打開編輯后保存退出時仍然有錯誤,則重復第1步中的內容;否則,就正常關閉退出。 第一種方法 #!/bin/bash [ ! -f $1 ] && echo "wrong path." && exit 2 until bash -n $1 &> /dev/null ; do read -p " Q|q to quit .others to edit:" opt case $opt in Q|q) echo "quit..." exit 3
*) vim $1
esac done 第二種方法: #!/bin/bash [ ! -f $1 ] && echo "wrong path." && echo "Quit!" && exit 9 until bash -n $1 &> /dev/null ; do read -p " Grammar wrong please enter Q|q to quit .others to edit:" opt case $opt in Q|q) echo "quit..." exit 3
*) vim $1 bash -n $1 &> /dev/null val=$? [ "$val" -ne 0 ] && echo "xiu gai bu cheng gong. "
esac done 第三種方法 #!/bin/bash [ ! -f $1 ] && echo "Wrong scripts." && exit 4 bash -n $1 &> /dev/null valu=$? until [ $valu -eq 0 ] ; do read -p "Q|q to quit ,others to edit:" op case $op in Q|q) echo "Quit." exit 9
*) vim $1 bash -n $1 &> /dev/null valu=$?
esac done 8 寫一個腳本: 查看redhat用戶是否登錄了系統,如果登錄了,就通知當前腳本執行者“redhat is logged on.”;否則,就睡眠5秒鐘后再次進行測試;直到其登錄為止退出; 第一種方法 #!/bin/bash who | grep "^redhat\>" &> /dev/null reval=$? until [ $reval -eq 0 ] ;do sleep 5 who | grep "^redhat\>" &> /dev/null reval=$? done echo "redhat is logged on." 第二種方法: #!/bin/bash until who | grep "^redhat\>" &> /dev/null ; do sleep 5 done echo "redhat is logged on" 9寫一個腳本: (1)、向系統中添加20個用戶,名字為linuxer1-linuxer20,密碼分別為其用戶名,要使用while循環; (2)、要求:在添加每個用戶之前事先判斷用戶是否存在,如果已經存在,則不再添加此用戶; (3)、添加完成后,顯示linuxer1-linuxer20每個用戶名及對應的UID號碼和GID號碼,形如 stu1, UID: 1000, GID: 1000 #!/bin/bash declare -i I=1 while [ $I -le 20 ] ; do l=linuxer$I let I++ ! id $l &> /dev/null && useradd $l &> /dev/null && echo "the user:$l" | passwd --stdin $l &> /dev/null && echo "a dd user $l successfully" || echo " The user $l is exit. " d=`id -u $l` g=`id -g $l` echo " $l ,UID:$d,GID:$g " done
以上有關循環語句在bash編程中用法的詳細解析就是小編為大家收集整理的全部內容了,希望對大家有所幫助。如果您喜歡這篇文章,可以收藏或分享給您的小伙伴們吧!歡迎持續關注我們的后續更新。 |