nohup output to file code example
Example 1: nohup set output file
nohup some_command &> nohup2.out &
Example 2: 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