Answers for "bash nohup specify output file"

1

bash nohup specify output file

# Basic syntax:
nohup your_program > your_program.out 2> your_program.err
# Where:
#	- the stdout from your_program is written to your_program.out
#	- any errors sent to stderr are written to your_program.err
Posted by: Guest on January-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language