until 循环执行一系列命令直至条件为 true 时停止.until 循环与 while 循环在处理方式上刚好相反.一般while循环优于until循环,但在某些时候,也只是极少数情况下,until 循环更加有用. until 循环格式为: until command do Statement(s) to be executed until command is true done command 一般为条件表达式,如果返回值为 false,则继续执行循环体内的语句,否则跳出循环. 例如,使用…
1.mysql脚本文件 t.sql insert into test.t values(@name,@age); exit 2.shell脚本文件 a.sh (为方便演示,与t.sql文件放在同一目录下) #!/bin/sh # fetch user parameters input by user read -p "please input name value : " name read -p "please input name age : " age ec…