timeout --signal=SIGKILL 10s timeout --kill-after=5 --signal=SIGINT 5s command
Eu quero executar esses dois comandos de tempo limite no mesmo comando, mas com um horário e instruções diferentes. Então
timeout --signal=SIGINT 5s command
timeout --signal=SIGKILL 10s command
Como anexá-los em uma linha?
Tags command-line timeout shell signals