Dear Friends,

I have to do a series of job in a remote machine. I put each job in a text
file called 'job' as and wrote the following code that can read each line in
the text file and execute the job.

I login to the machine and run the script as 'python job.py'. But when i
logout from the machine, the job gets killed. So i submitted the job in
background as 'python job.py &'. Even in this case, when i logout from the
machine, the job gets killed. Why is this so. How can i avoid the same ?

#!/usr/bin/env python
from sys import argv
import subprocess
for line in open('job'):
    subprocess.call(line,shell=True)

Thanks,
Bala
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to