雲端計算學習路線教程程式碼筆記:多條件判斷語法

千鋒雲端計算發表於2019-11-19

這篇文章是雲端計算學習路線教程程式碼筆記,關於 case的多條件判斷語法。

雲端計算學習路線教程程式碼筆記:多條件判斷語法

1. case 變數 in

2. 模式1)

3. 命令序列1

4. ;;

5. 模式2)

6. 命令序列2

7. ;;

8. 模式3)

9. 命令序列3

10. ;;

11.*)

12. 無匹配後命令序列

13.esac

第一行: 宣告case關鍵字呼叫case語法, 緊跟的“變數”一般為使用者的輸入值, in代表從下方的各個模式進行匹配

第2-4行: 匹配到“模式1”後進行命令的輸出或執行, 模式1: 一般為字元或數值

第11-12行: 當使用者輸入的字元不存在匹配模式時, 直接執行或列印*)下的命令或語句

開發系統工具

[root@bavdu shell_s]# vim system_tools

#!/usr/bin/env bash

#

# Author: bavdu

# Email: bavduer@163.com

# Github:

# 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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69916964/viewspace-2664745/,如需轉載,請註明出處,否則將追究法律責任。

相關文章