bash-4.2$ nohup python long_process.py &
[1] 13077

bash-4.2$ nohup: ignoring input and appending output to "nohup.out"

Press ENTER after you see the above message

January 1, 2017


Previous post
Avoid Module Level Imports Can’t remember where I read this but it’s good to keep in mind why module level imports should be avoided. Having imports later in the file can be
Next post
Save terminal output to a file All output will be sent to terminal and file. Append to existing file Source: Stackoverflow