I have a batch job which looks like this
sbatch --wrap "perl test.pl file1 file2"
sbatch --wrap "perl test.pl file3 file4"
sbatch --wrap "perl test.pl file5 file6"
sbatch --wrap "perl test.pl file7 file8"
& the list goes on till
sbatch --wrap "perl test.pl file49 file50"
How can I run individual jobs sequentially? Thanks,