Skip to content

Instantly share code, notes, and snippets.

@Swarchal
Created September 20, 2016 10:35
Show Gist options
  • Save Swarchal/1ea85f455b812264933e42ebefbb3da7 to your computer and use it in GitHub Desktop.
Save Swarchal/1ea85f455b812264933e42ebefbb3da7 to your computer and use it in GitHub Desktop.
Run qsub from a file of qsub commands
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