我想每 N 秒运行一个 bash 脚本,即使它失败,我也希望while
循环继续而不崩溃。
我正在使用以下解决方案如何每 N 秒重复运行 bash 脚本?:
同时脚本;睡 10 个小时;完毕
有评论说:This is the canonical way to repeat a command as long as it doesn't fail.
. 如果我的脚本失败,我会观察到 while 循环被终止。
有没有办法try...catch
在脚本上应用机制并继续循环,while
即使脚本失败?