I want to run N files (N jobs) that are inside N folders that are in my pwd such :
Folder_1
contains file_1
Folder_2
contains file_2
|
|
|
Folder_N
contains file_N
For one file_1 i just have to do : sbatch script.sh ./folder1/file_1.
But is there a way to make a loop for running the N files like :
for i in range(N):
sbatch script.sh ./folder_i/file_i
I found a solution i just want to share it here,