diff --git a/pages.nl/common/nohup.md b/pages.nl/common/nohup.md new file mode 100644 index 0000000000..c98a56ce85 --- /dev/null +++ b/pages.nl/common/nohup.md @@ -0,0 +1,20 @@ +# nohup + +> Laat een proces doorgaan wanneer de terminal wordt beƫindigd. +> Meer informatie: . + +- 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}} &`