— Command Line —
Unix: Get Your Program Running in the Background
What if you have a program that you’d like to run in the background remotely after you’ve exited from your terminal/shell prompt? Use the nohup command! Run: nohup some-command & Maybe you have a python script called server_receive.py, you should run nohup python server_receive.py &. The “&” symbol is required so that the process will… Read More Unix: Get Your Program Running in the Background