溫馨提示×

溫馨提示×

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

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

云計算學(xué)習(xí)路線教程代碼筆記:多條件判斷語法

發(fā)布時間:2020-08-03 09:55:08 來源:網(wǎng)絡(luò) 閱讀:187 作者:wb5d4a862f23b59 欄目:云計算

這篇文章是云計算學(xué)習(xí)路線教程代碼筆記,關(guān)于case的多條件判斷語法。

  1. case 變量 in

  2. 模式1)

  3. 命令序列1

  4. ;;

  5. 模式2)

  6. 命令序列2

  7. ;;

  8. 模式3)

  9. 命令序列3

  10. ;;

11.*)

  1. 無匹配后命令序列

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

#

Author: bavdu

Email: bavduer@163.com

Github: https://github.com/bavdu

Date: 2019//

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

向AI問一下細節(jié)

免責聲明:本站發(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)容。

AI