Wednesday, July 27, 2022

[SOLVED] Redirect nohup's stderr to nohup.out

Issue

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 &


Answered By - Akhil Thayyil
Answer Checked By - Katrina (WPSolving Volunteer)