我无法想出正确的分号和/或括号组合.我想这样做,但作为命令行的一行代码:
while [ 1 ] do foo sleep 2 done
Stefano Bori.. 1141
while true; do foo; sleep 2; done
顺便说一句,如果你在命令提示符下键入多行(如你所示),然后用向上箭头调用历史记录,你将在一行上得到它,正确地标点.
$ while true > do > echo "hello" > sleep 2 > done hello hello hello ^C $while true; do echo "hello"; sleep 2; done
@VincentScheib在OS X和Ubuntu上为我工作. (3认同)
"如果你在命令提示符下输入多线(如你所示),然后用向上箭头调用历史记录,你就会在一行上得到它,正确地标点." 对我来说不是真的. (2认同)
@VincentScheib在CentOS 6上为我工作 (2认同)
Anssi.. 161
也可以在while条件下使用sleep命令.使单线看起来更干净imho.
while sleep 2; do echo thinking; done
嗯,这不仅仅是改变语法 - 它将在*sleep之后执行命令*.在上一个答案中,命令立即执行.需要注意的事项. (14认同)
小智.. 67
科隆总是"真实的":
while :; do foo; sleep 2; done
为什么冒号总是如此? (14认同)
@Pineapple Under the Sea:来自bash手册页:(在SHELL BUILTIN命令中)`:[参数]`没有效果; 除扩展参数和执行任何指定的重定向之外,该命令不执行任何操作.返回零退出代码. (8认同)
推荐这个语法为:是shell本身的一部分,即:是一个shell内置命令. (2认同)
mipadi.. 29
您可以使用分号分隔语句:
$ while [ 1 ]; do foo; sleep 2; done
我喜欢这个答案,因为它解释了何时以及为什么;(分号)为必填项。 (2认同)
devnull.. 28
您还可以使用until
命令:
until ((0)); do foo; sleep 2; done
请注意,与此相反while
,until
只要测试条件的退出状态不为零,就会执行循环内的命令.
使用while
循环:
while read i; do foo; sleep 2; done < /dev/urandom
使用for
循环:
for ((;;)); do foo; sleep 2; done
另一种使用方式until
:
until [ ]; do foo; sleep 2; done
小智.. 10
一个非常简单的无限循环.. :)
while true ; do continue ; done
你的问题将是:
while true; do foo ; sleep 2 ; done
小智.. 8
我喜欢仅将分号用于WHILE语句,而使用&&运算符使循环执行多个操作...
所以我总是这样做
while true ; do echo Launching Spaceship into orbit && sleep 5s && /usr/bin/launch-mechanism && echo Launching in T-5 && sleep 1s && echo T-4 && sleep 1s && echo T-3 && sleep 1s && echo T-2 && sleep 1s && echo T-1 && sleep 1s && echo liftoff ; done
小智.. 7
对于简单的过程监视,请watch
改用
while true; do foo; sleep 2; done
顺便说一句,如果你在命令提示符下键入多行(如你所示),然后用向上箭头调用历史记录,你将在一行上得到它,正确地标点.
$ while true > do > echo "hello" > sleep 2 > done hello hello hello ^C $while true; do echo "hello"; sleep 2; done
也可以在while条件下使用sleep命令.使单线看起来更干净imho.
while sleep 2; do echo thinking; done
科隆总是"真实的":
while :; do foo; sleep 2; done
您可以使用分号分隔语句:
$ while [ 1 ]; do foo; sleep 2; done
您还可以使用until
命令:
until ((0)); do foo; sleep 2; done
请注意,与此相反while
,until
只要测试条件的退出状态不为零,就会执行循环内的命令.
使用while
循环:
while read i; do foo; sleep 2; done < /dev/urandom
使用for
循环:
for ((;;)); do foo; sleep 2; done
另一种使用方式until
:
until [ ]; do foo; sleep 2; done
一个非常简单的无限循环.. :)
while true ; do continue ; done
你的问题将是:
while true; do foo ; sleep 2 ; done
我喜欢仅将分号用于WHILE语句,而使用&&运算符使循环执行多个操作...
所以我总是这样做
while true ; do echo Launching Spaceship into orbit && sleep 5s && /usr/bin/launch-mechanism && echo Launching in T-5 && sleep 1s && echo T-4 && sleep 1s && echo T-3 && sleep 1s && echo T-2 && sleep 1s && echo T-1 && sleep 1s && echo liftoff ; done
对于简单的过程监视,请watch
改用
如果您希望while循环在某些条件后停止,并且在foo
满足此条件时命令返回非零值,则可以使循环中断,如下所示:
while foo; do echo 'sleeping...'; sleep 5; done;
例如,如果foo
命令正在批量删除事物,并且在没有什么要删除的情况下返回1。
如果您有一个自定义脚本,该脚本需要多次运行命令直到出现某种情况,则此方法很好用。您编写脚本以1
在满足条件0
时退出,并在应再次运行时退出。
例如,假设您有一个python脚本batch_update.py
,该脚本将更新数据库中的100行,并0
在有更多更新和1
没有更新时返回。以下命令将允许您一次更新行100,并在两次更新之间休眠5秒:
while batch_update.py; do echo 'sleeping...'; sleep 5; done;