Skip to content

Instantly share code, notes, and snippets.

@heartonbit
Last active March 24, 2021 09:15
Show Gist options
  • Save heartonbit/2b8d3d2d126f0990251e9f02f0b48f38 to your computer and use it in GitHub Desktop.
Save heartonbit/2b8d3d2d126f0990251e9f02f0b48f38 to your computer and use it in GitHub Desktop.
nohup
# 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