最佳答案
当你考虑如何实现无限循环时,你通常会看到这种方法:
while :
do
# loop infinitely
done
但是我就是不明白 :
在这里的用法,难道不应该使用:
while true
do
# loop infinitely
done
?