
timeout
List of commands for timeout:
-
timeout:ai:a4786 This command delays the execution for 15 seconds on a Windows system.$ timeout /t 15 /nobreaktry on your machineexplain this command
-
timeout:tldr:a3268 timeout: Run `sleep 10` and terminate it, if it runs for more than 3 seconds.$ timeout ${3s} ${sleep 10}try on your machineexplain this command
-
timeout:tldr:b0862 timeout: Specify the signal to be sent to the command after the time limit expires. (By default, TERM is sent).$ timeout --signal ${INT} ${5s} ${sleep 10}try on your machineexplain this command