我很难找到分号和/或大括号的正确组合。我想这样做,但作为命令行的一行代码:
while [ 1 ]
do
foo
sleep 2
done
我很难找到分号和/或大括号的正确组合。我想这样做,但作为命令行的一行代码:
while [ 1 ]
do
foo
sleep 2
done
当前回答
你甚至不需要使用do and done。对于无限循环,我发现使用大括号更容易理解。例如:
for ((;;)) { date ; sleep 1 ; }
这在bash和zsh中有效。在sh。
其他回答
非常简单的无限循环..:)
while true ; do continue ; done
你的问题是:
while true; 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:
while true; do echo 'while'; sleep 2s; done
用于循环:
for ((;;)); do echo 'forloop'; sleep 2; done
使用递归,(与上面有点不同,键盘中断不会停止它)
list(){ echo 'recursion'; sleep 2; list; } && list;
对于简单的过程监视,请改用监视
我只喜欢在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