In bash, I can do the following:
bash
for f in subdir/*.sh; do nohup \"$f\" \"$@\" &> /dev/null & done
in other words, i
I don't know about any mechanism for it in python, but you may try to use nohup. You may try to run
nohup
nohup python your_script.py arguments
Using os.system or subprocess.call.
os.system
subprocess.call