Possible Duplicate:
Using getopts in bash shell script to get long and short command line options
I'm trying to figure out how to make use of flag like -e/--email -h/--help for example.
UPDATE: Current example:
while getopts ":ec:h" OptionArgument; do
case $OptionArgument in
e ) S1=${OPTARG};;
c ) S2=${OPTARG};;
h ) usage;;
\?) usage;;
* ) usage;;
esac
done
However, if I leave blank it does nothing. If I add an -h it still runs and will not show usage.
UPDATE2
while [ $1 ]; do
case $1 in
'-h' | '--help' | '?' )
usage
exit
;;
'--conf' | '-c' )
;;
'--email' | '-e' )
EMAIL=$1
;;
* )
usage
exit
;;
esac
shift
done
-h/--help works but everything else fails and displays usage.
If you want long GNU like options and short ones, see this script to source in your script http://stchaz.free.fr/getopts_long.sh and an example :
Example :