您好,登錄后才能下訂單哦!
until語法
until 循環執行一系列命令直至條件為 true 時停止。
until 循環與 while 循環在處理方式上剛好相反。
一般 while 循環優于 until 循環,但在某些時候—也只是極少數情況下,until 循環更加有用。
until 語法格式:
until 測試條件
do
指令
done
condition 一般為條件表達式,如果返回值為 false,則繼續執行循環體內的語句,否則跳出循環。
實例1:以下實例我們使用 until 命令來輸出 0 ~ 9 的數字:
#!/bin/bash
a=0
until [ ! $a -lt 10 ]
do
echo $a
a=expr $a + 1
done輸出結果0 1 2 3 4 5 6 7 8 9
實例 2
#!/bin/bash
#
#判斷ip是否能ping通若不通等待60s
read -p "Enter IP Address:" ipadduntil ping -c 1 $ipadd &>/dev/null
do
echo "${ipadd} ping ........"
sleep 60
echo "已等待60s"
done
執行結果
[root@localhost shell]# sh until-1.sh
Enter IP Address:192.168.1.123
192.168.1.123 ping ........
已等待60s
192.168.1.123 ping ........
已等待60s
實例 3
#!/bin/bash
#
#判斷用戶是否在系統內
username=$1
if [ $# -lt 1 ]
then
echo "Usage:'basename $0' <username> [<message>]"
exit 1
fiif grep "^$username:" /etc/passwd > /dev/null
then
:
else
echo "$username is not a user on this system."
exit 2
fiuntil who|grep "$username" > /dev/null
do
echo "$username is not logged on."
sleep 5
done
執行結果
[root@localhost shell]# sh until-2.sh
Usage:'basename until-2.sh' <username> [<message>][root@localhost shell]# sh until-2.sh ab
ab is not a user on this system.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。