Created
July 1, 2013 19:22
-
-
Save andrewcstewart/5903741 to your computer and use it in GitHub Desktop.
Run the following script like this: > qsubscript.pl *.qsub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
for ($job in @ARGV) { | |
system "qsub $job"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment