I have three files: monitor.sh, which starts python scripts:
sudo python ./webCheck &
sudo python ./apiCheck &
and the otherones, w
You should be able to use:
sudo nohup python ./webCheck &
sudo nohup python ./apiCheck &
I don't think your monitor.sh will need it, since it should take a relatively short time to start the other two. However I'm not positive if the two checks would become children of monitor.sh, which may end up being an issue.