Shell指令碼的基本流程式控制制

來源:互聯網
上載者:User

標籤:als   use   ash   nbsp   user   useradd   bar   awk   and   

if else
read -p ‘請輸入分數:‘ scoreif [ $score -lt 60 ]; thenecho ‘60分以下‘elif  [ $score -lt 70 ]; thenecho ‘60-70分之間‘elif  [ $score -lt 80 ]; thenecho ‘70-80分之間‘elif [ $score -lt 90 ];thenecho ‘80-90分之間‘else echo ‘90分以上‘fi
case
read -p ‘請輸入數字‘ weekweek=`date +%w`                                     #當前日期case $week in1)echo ‘周一‘;;2)echo ‘周二‘;;3)echo ‘周三‘;;4)echo ‘周四‘;;5)echo ‘周五‘;;6)echo ‘周六‘;;7)echo ‘周末‘;;*)echo ‘輸入有誤‘;;esac
while
num=5while [ $num -gt -5 ]; doif [ $(($num%2)) -eq 0 ];thenecho -e "\033[31m${num}\033[0m"#紅色字型elseecho $numfinum=$(($num-1))sleep 1                 #休眠一秒鐘done                #跳出迴圈後的輸出echo $num
forin  AND  for
for i in `cat users.txt`               #比如在users.txt檔案裡有很多使用者等待建立,預設是換行隔開(在linux裡也就是空格)doecho $iuseradd $iecho ‘123456‘|passwd --stdin $idone
for i in `cat /etc/passwd|awk -F: ‘{print $i}‘`;doecho $iecho $i>>users.txt                                                   #把所有的user列表重新導向到users.txtdone
for (( i = 0; i < 10; i++ ));doecho $isleepif [ $i -eq 5 ]; then #break              #如果到5的時候,停止continue                          #如果到5的時候,跳過迴圈fiuseradd usesr$i              #建立十個使用者echo ‘passwd‘ | passwd --stdin user$idone

Shell指令碼的基本流程式控制制

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.