nohup ./myscript.sh & # runs in background
nohup ./myscript.sh # output is in nohup.out
nohup ./myscript.sh > myscript.log & # output is in myscript.log
# Basic syntax:
your_command & # or:
nohup your_command &
# Note, if you want to stop the job, run top or ps to get the process ID (PID)
# and then run kill PID