In bash, I can do the following:
bash
for f in subdir/*.sh; do nohup \"$f\" \"$@\" &> /dev/null & done
in other words, i
It's probably a duplicate of Run a program from python, and have it continue to run after the script is killed and no, ignoring SIGHUP doesn't help, but preexec_fn=os.setpgrp does.