Skip to content

Instantly share code, notes, and snippets.

@nazt
Created September 15, 2019 04:54
Show Gist options
  • Save nazt/8dbe6536e90f8808a687c7a84270fea4 to your computer and use it in GitHub Desktop.
Save nazt/8dbe6536e90f8808a687c7a84270fea4 to your computer and use it in GitHub Desktop.
#!/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