Skip to content

Instantly share code, notes, and snippets.

@TiagoTi
Created June 5, 2018 09:46
Show Gist options
  • Select an option

  • Save TiagoTi/dcbaecb3ec2b3a18b599453c03b12cfc to your computer and use it in GitHub Desktop.

Select an option

Save TiagoTi/dcbaecb3ec2b3a18b599453c03b12cfc to your computer and use it in GitHub Desktop.
# redirect output and errors into file output.log:
nohup some_command > output.log 2>&1&
# abbreviated syntax for bash version >= ver.4:
nohup some_command &> output.log
#https://gist.github.com/umidjons/8417312
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment