I am running several processes over a cluster. I start every process separately using screen command. It allows me to disconnect from the cluster and when connected view my processes. Starting all the screens one by one is a painful job. I am wondering if we could do it with a python script. The scrip opens the new shell creates the screen runs the process and disconnects. Writes info about all the started processes in a text file like process id starting commands etc.
Secondly, I would like to stop the processes, I would like to put the pid to file and just run a command which will kill all the mentioned processes.
for example
the smaple inut file looks like
process_name command
123 python batch_training.py
I would like to start the screen with the name given in process_name and the commend will be executed in the corresponding frame.
Thanks
Try to use "os.system()" with standart Linux commands. e.g.: