nohup: add Dutch translation (#13153)

This commit is contained in:
Sebastiaan Speck 2024-06-26 17:19:54 +02:00 committed by GitHub
parent 3303cb11c3
commit c2e27c9c73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
pages.nl/common/nohup.md Normal file
View File

@ -0,0 +1,20 @@
# nohup
> Laat een proces doorgaan wanneer de terminal wordt beëindigd.
> Meer informatie: <https://www.gnu.org/software/coreutils/nohup>.
- Voer een proces uit dat kan doorgaan na het sluiten van de terminal:
`nohup {{commando}} {{argument1 argument2 ...}}`
- Start `nohup` in de achtergrondmodus:
`nohup {{commando}} {{argument1 argument2 ...}} &`
- Voer een shell-script uit dat kan doorgaan na het sluiten van de terminal:
`nohup {{pad/naar/script.sh}} &`
- Voer een proces uit en schrijf de uitvoer naar een specifiek bestand:
`nohup {{commando}} {{argument1 argument2 ...}} > {{pad/naar/uitvoer_bestand}} &`