您好,登錄后才能下訂單哦!
打印選擇菜單,一鍵安裝Web服務(wù):
[root@oldboyscripts]# sh menu.sh 1.[install lamp] 2.[install lnmp] 3.[install mysql] 4.[install php] 5.[exit] pls input the num you want:
要求:
1、當(dāng)用戶輸入1時,輸出“startinstallinglamp.”然后執(zhí)行/server/scripts/lamp.sh,腳本內(nèi)容輸出"lampis installed"后退出腳本;
2、當(dāng)用戶輸入2時,輸出“startinstallinglnmp.”然后執(zhí)行/server/scripts/lnmp.sh輸出"lnmpis installed"后退出腳本;
3、當(dāng)用戶輸入2時,輸出“startinstallingmysql.”然后執(zhí)行/server/scripts/mysql.sh輸出"mysql installed"后退出腳本;
4、當(dāng)用戶輸入2時,輸出“startinstallingphp.”然后執(zhí)行/server/scripts/php.sh輸出"php installed"后退出腳本;
5、當(dāng)輸入3時,退出當(dāng)前菜單及腳本;
6、當(dāng)輸入任何其它字符,給出提示“Input error”后退出腳本。
7、要對執(zhí)行的腳本進(jìn)行相關(guān)條件判斷,例如:腳本是否存在,是否可執(zhí)行等。
解答:
#!/bin/bash RED_COLOR='\E[1;31m' GREEN_COLOR='\E[1;32m' YELLOW_COLOR='\E[1;33m' BLUE_COLOR='\E[1;34m' PINK_COLOR='\E[1;35m' RES='\E[0m' cat <<EOF 要打印的菜單 1.[install lamp] 2.[install lnmp] 3.[install mysql] 4.[install php] 5.[exit] EOF read -p"pls input the num you want:" a 請輸入一個參數(shù) case $a in 1) echo -e "$BLUE_COLOR startinstalling lamp $RES" 給輸出的內(nèi)容加上顏色 lampScripts=/server/scripts/lamp.sh [-f$lampScripts] && sh $lampScripts|| exit1 判斷要執(zhí)行的lamp文件是否存在 ;; 2) echo -e "$PINK_COLOR startinstalling lnmp $RES" lnmpScripts=/server/scripts/lnmp.sh [-f$lnmpScripts] && sh $lnmpScripts|| exit2 ;; 3) echo -e "$GREEN_COLOR startinstalling mysql $RES" mysqlScripts=/server/scripts/mysql.sh [-f$mysqlScripts] && sh $mysqlScripts|| exit3 ;; 4) echo-e "$PINK_COLOR startinstalling php $RES" phpScripts=/server/scripts/mysql.sh [-f$phpScripts] && sh $phpScripts|| exit4 ;; *) echo -e "$RED_COLOR input error $RES" esac
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。