我很难找到分号和/或大括号的正确组合。我想这样做,但作为命令行的一行代码:

while [ 1 ]
do
    foo
    sleep 2
done

当前回答

冒号总是“true”:

while :; do foo; sleep 2; done

其他回答

你也可以试试这个警告:您不应该这样做,但因为问题是要求无限循环没有结束。。。这就是你能做到的。

while [[ 0 -ne 1 ]]; do echo "it's looping";   sleep 2; done

你甚至不需要使用do and done。对于无限循环,我发现使用大括号更容易理解。例如:

for ((;;)) { date ; sleep 1 ; }

这在bash和zsh中有效。在sh。

可以使用分号分隔语句:

$ while [ 1 ]; do foo; sleep 2; done

冒号总是“true”:

while :; do foo; sleep 2; done

您还可以将该循环置于后台(例如,当您需要断开与远程计算机的连接时)

nohup bash -c "while true; do aws s3 sync xml s3://bucket-name/xml --profile=s3-profile-name; sleep 3600; done &"