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

Shell 编程基础之 Until 练习

一、语法

until [ condition ]  # 和while相反,当 condition 条件成立时,就终止回圈, 否则就持续进行回圈的程序段do    #执行内容done

二、练习

  1. 输入用户输入的参数,直到用户输入 "end" 结束循环
    untilread -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=1until [ "$i" -gt 5 ]doecho "$i"i=$(($i+1))done
    user@ae01:~$ ./test.sh12345user@ae01:~$

Shell 编程基础之 Until 练习