until command do Statement(s) to be executed until command is true done
#!/bin/bash a=0 until [ ! $a -lt 10 ] do echo $a a=`expr $a + 1` done
0 1 2 3 4 5 6 7 8 9
不是SHELL的SHELL—TCSH SHELL 編程
shell 子shell路徑
linux_while及until循環
Linux Shell腳本入門教程系列之(十二)Shell until循環
Shell while循環
Shell for循環
Linux Shell系列教程之(十二)Shell until循環,shelluntil
shell腳本一,shell腳本