People seem to have a bit of misunderstanding of what getopt and getopts do. They don't actually process your options for you, the way that e.g. the Getopt module in Perl or optparse/argparse modules in Python do. All that they do is canonicalize the options that are passed in -- i.e. convert them to a more standard form, so that it's easier for a shell script to process them. For example, an application of getopt might convert the following:
myscript -ab -ooutfile.txt infile.txt
into this:
myscript -a -b -o outfile.txt infile.txt
You have to do the actual processing yourself. You don't have to use getopt at all if you make the restriction on your program that you can only put one option per argument, and for options with values (e.g. -o above), the value has to go as a separate argument (after a space). For example, the following is an example of bog-standard option-processing, not using getopt, from a script of mine:
VERBOSE=false
DEBUG=false
MEMORY=
JAVA_MISC_OPT=
while true; do
case "$1" in
-v | --verbose ) VERBOSE=true; shift ;;
-d | --debug ) DEBUG=true; shift ;;
-m | --memory ) MEMORY="$2"; shift 2 ;;
--minheap )
JAVA_MISC_OPT="$JAVA_MISC_OPT -XX:MinHeapFreeRatio=$2"; shift 2 ;;
--maxheap )
JAVA_MISC_OPT="$JAVA_MISC_OPT -XX:MaxHeapFreeRatio=$2"; shift 2 ;;
--escape-analysis )
JAVA_MISC_OPT="$JAVA_MISC_OPT -XX:+DoEscapeAnalysis"; shift ;;
--compressed-oops )
JAVA_MISC_OPT="$JAVA_MISC_OPT -XX:+UseCompressedOops"; shift ;;
-- ) shift; break ;;
* ) break ;;
esac
done
This lets you specify options like -m 4096 --minheap 20 --maxheap 40 --verbose or similar. The quoting around "$1" and such is important as it ensures that arguments with spaces in them get handled properly.
Say you wanted to getopt-ize the above using GNU getopt (which is part of Linux, and can be installed on Mac OS X by installing MacPorts followed by sudo port install getopt). Also say that our script is called javawrap. You'd then add the following code above the code just given:
TEMP=`getopt -o vdm: --long verbose,debug,memory:,minheap:,escape-analysis,compressed-oops -n 'javawrap' -- ${1+"$@"}`
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
# Note the quotes around `$TEMP': they are essential!
eval set -- "$TEMP"
The effect of adding the above code is that
- If unrecognized options are given, an error will be output (that's why we need to pass in the name of our script, so the error will show our script name).
- Options and non-options can be mixed, rather than having to put all options first.
- Shorter but non-ambiguous versions of long options are allowed, e.g.
--escape-anal instead of --escape-analysis.
- You can specify long options using either the
--minheap 20 or --minheap=20 style.
- If you add the
-a flag to getopt, you can also specify long options using a single dash (Java-style, as in -minheap 20).
- Short options can be combined into a single argument, e.g.
-vd.
- Possibly other nice features.
But note that all of these added features are optional, and you can get by perfectly well without them; you just have to use a more standard syntax when specifying the options.
Note that when you use the added code to call getopt, only the first line needs to be changed, and only the parts that specify short and long options, and specify your program name. (Basically, after -o you list your short options, with a colon after those that take values; after --long you list your long options separated by commas, again with a colon after those that take values; after -n, you give your program name.) All the rest is "boilerplate" code that should stay as-is.
Also note that the above boilerplate is only for GNU getopt. If you use BSD getopt (i.e. the one that's built in to Mac OS X or FreeBSD), you first of all can only tell it to parse short options, and second of all you need different boilerplate. Basically, BSD getopt is broken in numerous ways: First, that it can't handle long options, and second that it doesn't correctly handle spaces in command arguments. GNU getopt does both things correctly, but the result is that the boilerplate needs to be different (in particular, you need to say eval set instead of just set).