Skip to content

Instantly share code, notes, and snippets.

@andrewcstewart
Created July 1, 2013 19:22
Show Gist options
  • Save andrewcstewart/5903741 to your computer and use it in GitHub Desktop.
Save andrewcstewart/5903741 to your computer and use it in GitHub Desktop.
Run the following script like this: > qsubscript.pl *.qsub
#!/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