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
#!/bin/zsh | |
# Handy run script. | |
# Call with './run.sh "<COMMENT>" where <COMMENT> is replaced with your title for the run. | |
# <COMMENT> must be in quotes. | |
function itsatrap() | |
{ | |
echo "Aborting job $jnum" | |
qdel $jnum | |
exit 2 | |
} |