Last active
March 24, 2021 09:15
-
-
Save heartonbit/2b8d3d2d126f0990251e9f02f0b48f38 to your computer and use it in GitHub Desktop.
nohup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default nohup.out | |
nohup myprogram & | |
# Custom output file | |
nohup myprogram > myprogram.out & | |
# Redirect stderr to stdout | |
nohup myprogram > myprogram.out 2>&1 & | |
# Multiple commands | |
nohup sh -c "multiple commands" > myprogram.out & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment