1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 22:15:42 +02:00

timeout: add Dutch translation (#13194)

This commit is contained in:
Sebastiaan Speck 2024-06-28 14:35:03 +02:00 committed by GitHub
parent 72ec199725
commit 4562d83df5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,12 @@
# timeout
> Voer een commando uit met een tijdslimiet.
> Meer informatie: <https://www.gnu.org/software/coreutils/timeout>.
- Voer `sleep 10` uit en beëindig het na 3 seconden:
`timeout 3s sleep 10`
- Stuur een signaal naar het commando nadat de tijdslimiet is verlopen (standaard SIGTERM):
`timeout --signal {{INT}} {{5s}} {{sleep 10}}`