Created
September 20, 2016 10:35
-
-
Save Swarchal/1ea85f455b812264933e42ebefbb3da7 to your computer and use it in GitHub Desktop.
Run qsub from a file of qsub commands
This file contains hidden or 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
while read p; do qsub $p; done < to_run.txt | |
while read p | |
do qsub $p | |
done < to_run.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment