首页 > 代码库 > Shell 编程基础之 While 练习

Shell 编程基础之 While 练习

一、语法

while [ condition ]  # 当 condition 条件成立时,就进行循环,直到条件不成立停止do    #执行内容done

二、练习

  1. 输入用户输入的参数,直到用户输入 "end" 结束循环
    whileread -p "Plz input a paramter": paramtest $param != "end"doecho "$param"done
    user@ae01:~$ ./test.shPlz input a paramter:aaPlz input a paramter:bbPlz input a paramter:ccPlz input a paramter:enduser@ae01:~$
  2. 输出1到5的自然数
    i=1while [ "$i" -le 5 ]doecho "$i"i=$(($i+1))done
    user@ae01:~$ ./test.sh12345user@ae01:~$

Shell 编程基础之 While 练习