您好,登錄后才能下訂單哦!
這篇文章是云計算學(xué)習(xí)路線教程代碼筆記,關(guān)于case的多條件判斷語法。
case 變量 in
模式1)
命令序列1
;;
模式2)
命令序列2
;;
模式3)
命令序列3
11.*)
13.esac
第一行: 聲明case關(guān)鍵字調(diào)用case語法, 緊跟的“變量”一般為用戶的輸入值, in代表從下方的各個模式進行匹配
第2-4行: 匹配到“模式1”后進行命令的輸出或執(zhí)行, 模式1: 一般為字符或數(shù)值
第11-12行: 當用戶輸入的字符不存在匹配模式時, 直接執(zhí)行或打印*)下的命令或語句
開發(fā)系統(tǒng)工具
[root@bavdu shell_s]# vim system_tools
#!/usr/bin/env bash
#
cat <<-EOF
+-------------------------------------------------------------------------+
| System_tools V1.0 |
+-------------------------------------------------------------------------+
| a. Stop And Disabled Firewalld. |
| b. Disabled SELinux Secure System. |
| c. Install Apache Service. |
| d. Quit |
+-------------------------------------------------------------------------+
EOF
printf "\e[1;31m Please input your select: \e[0m" && read var
case "$var" in
"a")
systemctl stop firewalld && systemctl disable firewalld
;;
"b")
sed -ri s/SELINUX=enforcing/SELINUX=disabled/g /etc/selinux/config
;;
"c")
yum -y install httpd httpd-tools
;;
"d")
exit
;;
*)
printf "請按照上方提供的選項輸入!!!\n"
;;
esac
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。