您好,登錄后才能下訂單哦!
這篇文章是云計算學習路線教程代碼筆記,關于case的多條件判斷語法。
case 變量 in
模式1)
命令序列1
;;
模式2)
命令序列2
;;
模式3)
命令序列3
11.*)
13.esac
第一行: 聲明case關鍵字調用case語法, 緊跟的“變量”一般為用戶的輸入值, in代表從下方的各個模式進行匹配
第2-4行: 匹配到“模式1”后進行命令的輸出或執行, 模式1: 一般為字符或數值
第11-12行: 當用戶輸入的字符不存在匹配模式時, 直接執行或打印*)下的命令或語句
開發系統工具
[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
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。