最佳答案
在Bash中模拟do-while循环的最佳方法是什么?
我可以在进入while
循环之前检查条件,然后继续在循环中重新检查条件,但这是重复的代码。有没有更干净的方法?
脚本的伪代码:
while [ current_time <= $cutoff ]; do
check_if_file_present
#do other stuff
done
如果在$cutoff
时间之后启动,则不会执行check_if_file_present
,而do-while则会。