Answers for "linux run background"

6

linux run background

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

linux run task in background

[command] 2> /dev/null &
Posted by: Guest on October-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language