Search code examples
bashshellstdoutstderrnohup

Redirect nohup's stderr to nohup.out


How do I run a command with nohup so that both the stdout and stderr are saved to nohup.out? By default only stdout is saved and stderr is discarded.


Solution

  • Try this

    nohup 2>&1 Ex.exe &