git-cr/git-cr.bash

14 lines
247 B
Bash
Executable File

#!/usr/bin/env bash
set -o nounset
set -o pipefail
if [[ "${TRACE-0}" == "1" ]]; then set -o xtrace; fi
while getopts "n" flag
do
case "${flag}" in
n) git-cr-new.bash;;
*) echo "Unexpected option ${flag}"; exit 1;;
esac
done