溫馨提示×

溫馨提示×

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

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

云計算學習路線源碼框架筆記:while循環(huán)結構

發(fā)布時間:2020-07-06 18:02:04 來源:網絡 閱讀:229 作者:wb5d4a862f23b59 欄目:云計算

以下內容是關于云計算學習路線源碼框架筆記內容,下面是關于while循環(huán)結構的內容:

while 條件

do

循環(huán)體

done

完善系統(tǒng)工具的輸出及可操作性

#!/usr/bin/env bash

#

Author: bavdu

Email: bavduer@163.com

Github: https://github.com/bavdu

Date: 2019//

while 1>0

do

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;35m 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

if [ $? -eq 0 ];then

clear

else

printf "\e[1;31m Warning: Your program exist ERROR!!! \e[0m\n"

break

fi

done

向AI問一下細節(jié)

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

AI