Answers for "nohup output to file"

0

nohup output file

nohup ./myscript.sh							# output is in nohup.out
nohup ./myscript.sh > myscript.log &		# output is in myscript.log
nohup ./myscript.sh &						# runs in background
Posted by: Guest on May-11-2021
0

nohup output to a file

nohup python retrain.py 2>&1 > retrain_resnet.out &
Posted by: Guest on January-04-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language