Shubhadip Chakraborty
Shubhadip Chakraborty

Reputation: 45

PBS batch job submission

I have 100 scripts with .bash extension and I want to submit all of them in one shot in pbs script. I used qsub *.bash But it is not working. Can anyone please help me

Upvotes: 0

Views: 55

Answers (1)

clusterdude
clusterdude

Reputation: 622

One way it to simply loop over the files:

for i in `ls -1 *.bash` ; do qsub $i ; done

Upvotes: 1

Related Questions