An administrator wants to start a long-running script in the background so that it continues running even after logging out. Which command should be used?
Correct: nohup allows process to survive logout; & runs in background.
Why this answer
nohup prevents the process from receiving SIGHUP when the terminal closes. & runs it in background.