Skip to main content
deepak

Featured

How to run program or script such that closing terminal doesn't close it.

nohup python a.py &
 where a is the name of script. It produces the output in nohup.out.

printing logs in file

nohup python -u ./try_django.py >django.log &

Comments