亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

shell腳本基礎知識梳理<三>:條件測試與比較、流程控制 if

發布時間:2020-07-14 22:32:10 來源:網絡 閱讀:221 作者:wx5cb5dcd871bbc 欄目:系統運維

一、條件測試與比較
1、test 測試表達式 常用
test -f file && echo true||echo false
2、[ 測試表達式 ] 特別常用
[ -f file ]&& echo true||echo false
3、[[ 測試表達式 ]]
二、流程控制

1、流控制語句 if
實例1
#!/bin/bash
#獲取uid=0(root)中的0;
id=id | awk -F '[=(]' '{print $2}'
echo "your user id is:$id"
if [ $id -eq 0 ]
then
echo "root"
else
echo "not root"
fi
實例2:判斷登錄的用戶
#!/bin/bash
#$#是添加到shell 參數個數
if [ $# -eq 1 ] #或 [[ $#==1 ]] 或 (($#==1))
then
if who|grep $1 >/dev/null
then
echo $1 is active.
else
echo $1 is not active.
fi
else
echo "Usage: $0 <username>"
exit 1
fi
~
執行后的結果
[root@localhost shell]# sh if-if.sh root
root is active.
[root@localhost shell]# sh if-if.sh zabbix
zabbix is not active.
[root@localhost shell]# sh if-if.sh
Usage: if-if.sh <username>
[root@localhost shell]#
實例3 if-elif..else-fi
#!/bin/bash
##if-elif..else-fi
read -p "how lod are you? " age
#使用shell算數運算符(())進行條件測試
if ((age<0||age>120));then #[[ age < 0 || age > 120 ]]
echo "out of range !"
exit 1
fi
if ((age>=0&&age<13));then
echo "child!"
elif ((age>=13&&age<20));then
echo "callan!"
elif ((age>=20&&age<30));then
echo "P iii"
elif ((age>=30&&age<40));then
echo "P IV I"
else
echo "Sorry I asked."
fi
實例4
#!/bin/bash
##if 語句可以嵌套使用
file=$1
[ $# -ne 1 ] && echo "Usage: $0 <filename>" && exit 1
#錯誤的寫法 [ $# -ne 1 ] && echo "Usage: $0 <filename>" ; exit 1 這樣";" 不管前面的判斷是否正確都會執

if [ -d $file ]
then
echo "$file is a directory"
elif [ -f $file ]
then
if [ -r $file -a -w $file -a -x $file ];then
echo "you have (rwx) permissioon on $file."
else
echo "$file is file."
fi
else
echo "$fles is neither a file nor a directory."
fi
執行結果
[root@localhost shell]# vim if-elif-if-else.sh
[root@localhost shell]# sh if-elif-if-else.sh liu
you have (rwx) permissioon on liu.
[root@localhost shell]# sh if-elif-if-else.sh liub
liub is a directory
[root@localhost shell]# touch qq
[root@localhost shell]# sh if-elif-if-else.sh qq
qq is file.
[root@localhost shell]#

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德令哈市| 邵武市| 茂名市| 肥西县| 淅川县| 孝感市| 来安县| 赞皇县| 景谷| 广安市| 湛江市| 尚义县| 弥渡县| 京山县| 隆德县| 达拉特旗| 陇西县| 仙桃市| 保靖县| 清水县| 东明县| 平陆县| 武穴市| 闸北区| 仙游县| 台安县| 夏津县| 固镇县| 陵川县| 维西| 罗江县| 济南市| 淮北市| 中卫市| 海南省| 广元市| 睢宁县| 平遥县| 延庆县| 陆川县| 南和县|