这个问题已经在这里有了答案: > How do I limit the running time of a BASH script 4个
有时我的bash脚本在没有明确原因的情况下挂起并保持
因此它们实际上可以永远挂起(脚本过程将一直运行,直到我杀死它为止)
是否可以结合bash脚本超时机制,以便在例如1/2小时后退出程序?
解决方法:
这种仅使用Bash的方法通过将函数作为后台作业运行以强制执行超时,从而将所有超时代码封装在脚本中:
#!/bin/bash
Timeout=1800 # 30 minutes
function timeout_monitor() {
sleep "$Timeout"
kill "$1"
}
# start the timeout monitor in
# background and pass the PID:
timeout_monitor "$$" &
Timeout_monitor_pid=$!
# <your script here>
# kill timeout monitor when terminating:
kill "$Timeout_monitor_pid"
请注意,该功能将在单独的过程中执行.因此,必须传递被监视进程的PID($$).为了简洁起见,我省略了通常的参数检查.