Answers for "linux run command in background and redirect output to file"

0

linux run command in background and redirect output to 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

Code answers related to "linux run command in background and redirect output to file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language