-
-
Save arafatx/515d043881873112003eacc54fd3316e to your computer and use it in GitHub Desktop.
getopt handmade alternative in bash, supporting short and long options
This file contains 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
#!/usr/bin/env bash | |
# File name | |
readonly PROGNAME=$(basename $0) | |
# File name, without the extension | |
readonly PROGBASENAME=${PROGNAME%.*} | |
# File directory | |
readonly PROGDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) | |
# Arguments | |
readonly ARGS="$@" | |
# Arguments number | |
readonly ARGNUM="$#" | |
usage() { | |
echo "Script description" | |
echo | |
echo "Usage: $PROGNAME -i <file> -o <file> [options]..." | |
echo | |
echo "Options:" | |
echo | |
echo " -h, --help" | |
echo " This help text." | |
echo | |
echo " -i <file>, --input <file>" | |
echo " Input file. If \"-\", stdin will be used instead." | |
echo | |
echo " -o <file>, --output <file>" | |
echo " Output file." | |
echo | |
echo " --" | |
echo " Do not interpret any more arguments as options." | |
echo | |
} | |
while [ "$#" -gt 0 ] | |
do | |
case "$1" in | |
-h|--help) | |
usage | |
exit 0 | |
;; | |
-i|--input) | |
input="$2" | |
# Jump over <file>, in case "-" is a valid input file | |
# (keyword to standard input). Jumping here prevents reaching | |
# "-*)" case when parsing <file> | |
shift | |
;; | |
-o|--output) | |
output="$2" | |
;; | |
--) | |
break | |
;; | |
-*) | |
echo "Invalid option '$1'. Use --help to see the valid options" >&2 | |
exit 1 | |
;; | |
# an option argument, continue | |
*) ;; | |
esac | |
shift | |
done | |
# script content! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment