1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

timeout: clarify the default signal sent to the process (#2709)

* timeout: clarify the default signal sent to the process
This commit is contained in:
Hugo Locurcio 2019-01-15 12:39:51 +01:00 committed by Muhammad Falak R Wani
parent 9749d6fc47
commit 09b880bde4

View file

@ -2,7 +2,7 @@
> Run a command with a time limit.
- Run `sleep 10` and kill it, if it's running after 3 seconds:
- Run `sleep 10` and terminate it, if it runs for more than 3 seconds:
`timeout {{3s}} {{sleep 10}}`