Limiting the time a program runs in Linux

后端 未结 7 1834
礼貌的吻别
礼貌的吻别 2020-12-23 11:39

In Linux I would like to run a program but only for a limited time, like 1 second. If the program exceeds this running time I would like to kill the process and show an erro

7条回答
  •  一向
    一向 (楼主)
    2020-12-23 11:57

    tail -f file & pid=$!
    sleep 10
    kill $pid 2>/dev/null && echo '...'
    

提交回复
热议问题