標籤: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指令碼的基本流程式控制制