Shell

超時管道

  • January 18, 2015

我想在同一命令上執行這兩個超時命令,但時間和指令不同。所以

timeout --signal=SIGINT 5s command 
timeout --signal=SIGKILL 10s command

如何將它們附加在一行中?

timeout --signal=SIGKILL 10s timeout --kill-after=5 --signal=SIGINT 5s command

引用自:https://unix.stackexchange.com/questions/179724