As noted in the comments, after you consume the argument (for example for credentials), you need another shift. You should be consistent in your error reporting for non-existent arguments. If you get -h or --help, you should simply print the help and exit; you should not test for more arguments. If help is requested, you give it and do nothing else. You should also echo errors to standard error: echo "message" >&2. Your messages should be prefixed with the script/program name: arg0=$(basename "$0" .sh) and echo "$arg0: message" >&2 etc.
Putting the changes together, you might come up with a script like this:
#!/bin/sh arg0=$(basename "$0" .sh) blnk=$(echo "$arg0" | sed 's/./ /g') usage_info() { echo "Usage: $arg0 [{-s|--source} source] [{-d|--destination} destination] \\" echo " $blnk [{-c|--credentials} credentials] [{-b|--bandwidth} bandwidth] \\" echo " $blnk [{-t|--timeout} timeout] [{-p|--port} port] \\" echo " $blnk [-h|--help] [{-l|--compression-level} level]" } usage() { exec 1>2 # Send standard output to standard error usage_info exit 1 } error() { echo "$arg0: $*" >&2 exit 1 } help() { usage_info echo echo " {-s|--source} source -- Set source directory (default: .)" echo " {-d|--destination} destination -- Set destination" echo " {-c|--credentials} credentials -- Set credentials" echo " {-b|--bandwidth} bandwidth -- Set maximum bandwidth" echo " {-t|--timeout} timeout -- Set timeout (default: 60s)" echo " {-p|--port} port -- Set port number (default: 1234)" echo " {-l|--compression-level} level -- Set compression level (default: 1)" echo " {-h|--help} -- Print this help message and exit" # echo " {-V|--version} -- Print version information and exit" exit 0 } flags() { while test $# -gt 0 do case "$1" in (-s|--source) shift [ $# = 0 ] && error "No source directory specified" export SOURCE="$1" shift;; (-d|--destination) shift [ $# = 0 ] && error "No destination specified" export DESTINATION="$1" shift;; (-c|--credentials) shift [ $# = 0 ] && error "No credentials specified" export CREDENTIALS="$1" shift;; (-b|--bandwidth) shift [ $# = 0 ] && error "No bandwidth specified" export BANDWIDTH="$1" shift;; (-t|--timeout) shift [ $# = 0 ] && error "No timeout specified" export TIMEOUT="$1" shift;; (-p|--port) shift [ $# = 0 ] && error "No port specified" export PORT="$1" shift;; (-l|--compression-level) shift [ $# = 0 ] && error "No compression level specified" export COMPRESS_LEVEL="$1" shift;; (-h|--help) help;; # (-V|--version) # version_info;; (*) usage;; esac done } flags "$@" echo "source is $SOURCE" echo "destination is $DESTINATION" echo "credentials are $CREDENTIALS" echo "bandwidth is $BANDWIDTH" echo "timeout is $TIMEOUT" echo "port is $PORT"
Sample run (script name: flags53.sh):
$ sh flags53.sh -c XYZ -d PQR -s 123 -l 4 -t 99 -b 12 -p 56789 source is 123 destination is PQR credentials are XYZ bandwidth is 12 timeout is 99 port is 56789 $ sh flags53.sh -c XYZ --destination PQR -s 123 -l 4 --timeout 99 -b 12 --port 56789 source is 123 destination is PQR credentials are XYZ bandwidth is 12 timeout is 99 port is 56789 $ sh flags53.sh -c XYZ -h Usage: flags53 [{-s|--source} source] [{-d|--destination} destination] \ [{-c|--credentials} credentials] [{-b|--bandwidth} bandwidth] \ [{-t|--timeout} timeout] [{-p|--port} port] \ [-h|--help] [{-l|--compression-level} level] {-s|--source} source -- Set source directory (default: .) {-d|--destination} destination -- Set destination {-c|--credentials} credentials -- Set credentials {-b|--bandwidth} bandwidth -- Set maximum bandwidth {-t|--timeout} timeout -- Set timeout (default: 60s) {-p|--port} port -- Set port number (default: 1234) {-l|--compression-level} level -- Set compression level (default: 1) {-h|--help} -- Print this help message and exit $
Note that requested help can go to standard output instead of standard error, though sending the help to standard error would not be an egregious crime. The help gets the usage message and extra information about the meaning of each option. Noting defaults (and setting them) is a good idea too. It may not be necessary to export the settings — you could simply set the variables without an explicit export. You should really set the variables to their defaults before calling the flags function, or at the start of the flags function. This avoids accidentally inheriting exported values (environment variables). Unless, of course, you want to accept environment variables, but then your names should probably be given a systematic prefix appropriate for the script name. Most programs should have a --version or -V option (use -v for 'verbose', not for version). If the command does not accept any non-option (file name) arguments, add a check after the parsing loop and complain about unwanted arguments. If the command must have at least one non-option argument, check that instead. Do not report an error on receiving -- as an argument; terminate the checking loop and treat any remaining arguments as non-option arguments.
One residual problem — the shifts in the function affect the function's argument list, not the global "$@". You'd have to work out how to deal with that from this skeleton. I think I'd probably create an analogue to $OPTIND that reports how many arguments to shift to get to the non-option arguments. The code in the flags function should keep track of how many arguments it shifts.
That leads to the revised code:
#!/bin/sh arg0=$(basename "$0" .sh) blnk=$(echo "$arg0" | sed 's/./ /g') usage_info() { echo "Usage: $arg0 [{-s|--source} source] [{-d|--destination} destination] \\" echo " $blnk [{-c|--credentials} credentials] [{-b|--bandwidth} bandwidth] \\" echo " $blnk [{-t|--timeout} timeout] [{-p|--port} port] \\" echo " $blnk [-h|--help] [{-l|--compression-level} level]" } usage() { exec 1>2 # Send standard output to standard error usage_info exit 1 } error() { echo "$arg0: $*" >&2 exit 1 } help() { usage_info echo echo " {-s|--source} source -- Set source directory (default: .)" echo " {-d|--destination} destination -- Set destination" echo " {-c|--credentials} credentials -- Set credentials" echo " {-b|--bandwidth} bandwidth -- Set maximum bandwidth" echo " {-t|--timeout} timeout -- Set timeout (default: 60s)" echo " {-p|--port} port -- Set port number (default: 1234)" echo " {-l|--compression-level} level -- Set compression level (default: 1)" echo " {-h|--help} -- Print this help message and exit" # echo " {-V|--version} -- Print version information and exit" exit 0 } flags() { OPTCOUNT=0 while test $# -gt 0 do case "$1" in (-s|--source) shift [ $# = 0 ] && error "No source directory specified" export SOURCE="$1" shift OPTCOUNT=$(($OPTCOUNT + 2));; (-d|--destination) shift [ $# = 0 ] && error "No destination specified" export DESTINATION=$1 shift OPTCOUNT=$(($OPTCOUNT + 2));; (-c|--credentials) shift [ $# = 0 ] && error "No credentials specified" export CREDENTIALS=$1 shift OPTCOUNT=$(($OPTCOUNT + 2));; (-b|--bandwidth) shift [ $# = 0 ] && error "No bandwidth specified" export BANDWIDTH=$1 shift OPTCOUNT=$(($OPTCOUNT + 2));; (-t|--timeout) shift [ $# = 0 ] && error "No timeout specified" export TIMEOUT="$1" shift OPTCOUNT=$(($OPTCOUNT + 2));; (-p|--port) shift [ $# = 0 ] && error "No port specified" export PORT=$1 shift OPTCOUNT=$(($OPTCOUNT + 2));; (-l|--compression-level) shift [ $# = 0 ] && error "No compression level specified" export COMPRESS_LEVEL="$1" shift OPTCOUNT=$(($OPTCOUNT + 2));; (-h|--help) help;; # (-V|--version) # version_info;; (--) shift OPTCOUNT=$(($OPTCOUNT + 1)) break;; (*) usage;; esac done echo "DEBUG-1: [$*]" >&2 echo "OPTCOUNT=$OPTCOUNT" >&2 } flags "$@" echo "DEBUG-2: [$*]" >&2 echo "OPTCOUNT=$OPTCOUNT" >&2 shift $OPTCOUNT echo "DEBUG-3: [$*]" >&2 echo "source is $SOURCE" echo "destination is $DESTINATION" echo "credentials are $CREDENTIALS" echo "bandwidth is $BANDWIDTH" echo "timeout is $TIMEOUT" echo "port is $PORT"
There are other ways of writing the arithmetic if you wish to experiment. Don't use expr though.
-hor--help, you should simply print the help and exit; you should not test for more arguments. If help is requested, you give it and do nothing else. You should also echo errors to standard error:echo "message" >&2. Your messages should be prefixed with the script/program name:arg0=$(basename "$0" .sh)andecho "$arg0: message" >&2etc.getopt(1)command. It will probably make life easier for you; it handles long options. In most (all?) shells, the built-ingetoptscommands do not, especially if they're POSIX compliant.