timeout: add Dutch translation (#13194)

pull/28/head
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
1 changed files with 12 additions and 0 deletions

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}}`