Created
September 15, 2019 04:54
-
-
Save nazt/8dbe6536e90f8808a687c7a84270fea4 to your computer and use it in GitHub Desktop.
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/bash | |
SHELL=/bin/bash | |
VERSION=0.0.1 | |
usage() { | |
cat <<EOF | |
$0 v$VERSION | |
Usage: $0 [-v|--help] | |
EOF | |
exit 1 | |
} | |
case "$1" in | |
--help|help) usage;; | |
-v|version) | |
echo "$VERSION" | |
;; | |
*) usage;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment