标签: bash shell
我需要执行可能需要很长时间的bash命令,但是如果这个时间超过5分钟我需要杀死它!
有什么想法吗?
答案 0 :(得分:0)
您可以使用timeout命令。例如
timeout
timeout 300 some_cmd
将会终止some_cmd。
some_cmd