I have 15 python scripts need to be run. I know I can sbatch them one by one, but that's too tricky. Is there a way I put all of them in one file, and let them be executed them?
I'll add more detail. Right now, i have 15 python files, which correspond to 15 .sh files. But i don't want to sbatch them one by one manually. So can i write a run.sh to put all the 15 .sh files into it, thereafter i only need do
sbatch run.sh
. Then all the work can be done.