Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/bin/bash
#
# Modifies grid engine jobs
set -e
name="${GT_NAME}-alter"
usage() {
cat <<EOF
usage: ${name/-/ } [--help] <qalter options>
See \`man qalter' for qalter options.
EOF
}
main() {
verbose "arguments (before parsing):" "$@"
if [[ $# -eq 0 ]]; then
usage
exit 1
fi
while [[ $# -gt 0 ]]; do
case "$1" in
--help|help)
show_help "alter"
break
;;
*)
qalter "$@"
break
;;
esac
shift
done
}
main "$@"