동일한 명령에 대해 이 두 가지 시간 초과 명령을 실행하고 싶지만 시간과 지침은 다릅니다. 그래서
timeout --signal=SIGINT 5s command
timeout --signal=SIGKILL 10s command
줄에 어떻게 추가할 수 있나요?
답변1
timeout --signal=SIGKILL 10s timeout --kill-after=5 --signal=SIGINT 5s command
동일한 명령에 대해 이 두 가지 시간 초과 명령을 실행하고 싶지만 시간과 지침은 다릅니다. 그래서
timeout --signal=SIGINT 5s command
timeout --signal=SIGKILL 10s command
줄에 어떻게 추가할 수 있나요?
timeout --signal=SIGKILL 10s timeout --kill-after=5 --signal=SIGINT 5s command