**Note that** ''getopts'' is neither able to parse GNU-style long options (''<nowiki>--</nowiki>myoption'') nor XF86-style long options (''-myoption''). So, when you want to parse command line arguments in a professional ;-) way, ''getopts'' may or may not work for you. Unlike its older brother ''getopt'' (note the missing //s//!), it's a shell builtin command. The advantages are:
* No need to pass the positional parameters through to an external program.
* Being a builtin, ''getopts'' can set shell variables to use for parsing (impossible for an //external// process!)
* There's no need to argue with several ''getopt'' implementations which had buggy concepts in the past (whitespace, ...)
* ''getopts'' is defined in POSIX(r).
----
Some other methods to parse positional parameters - using neither **getopt** nor **getopts** - are described in: [[scripting:posparams | How to handle positional parameters]].
==== Terminology ====
It's useful to know what we're talking about here, so let's see... Consider the following command line:
These are all positional parameters, but they can be divided into several logical groups:
* ''-x'' is an **option** (aka **flag** or **switch**). It consists of a dash (''-'') followed by **one** character.
* ''-f'' is also an option, but this option has an associated **option argument** (an argument to the option ''-f''): ''/etc/mybackup.conf''. The option argument is usually the argument following the option itself, but that isn't mandatory. Joining the option and option argument into a single argument ''-f/etc/mybackup.conf'' is valid.
* ''-r'' depends on the configuration. In this example, ''-r'' doesn't take arguments so it's a standalone option like ''-x''.
* ''./foo.txt'' and ''./bar.txt'' are remaining arguments without any associated options. These are often used as **mass-arguments**. For example, the filenames specified for ''cp(1)'', or arguments that don't need an option to be recognized because of the intended behavior of the program. POSIX(r) calls them **operands**.
To give you an idea about why ''getopts'' is useful, The above command line is equivalent to:
which is complex to parse without the help of ''getopts''.
The option flags can be **upper- and lowercase** characters, or **digits**. It may recognize other characters, but that's not recommended (usability and maybe problems with special characters).
==== How it works ====
In general you need to call ''getopts'' several times. Each time it will use the next positional parameter and a possible argument, if parsable, and provide it to you. ''getopts'' will not change the set of positional parameters. If you want to shift them, it must be done manually:
''getopts'' will parse options and their possible arguments. It will stop parsing on the first non-option argument (a string that doesn't begin with a hyphen (''-'') that isn't an argument for any option in front of it). It will also stop parsing when it sees the ''<nowiki>--</nowiki>'' (double-hyphen), which means [[dict:terms:end_of_options | end of options]].
|[[syntax:shellvars#OPTIND|OPTIND]]|Holds the index to the next argument to be processed. This is how ''getopts'' "remembers" its own status between invocations. Also useful to shift the positional parameters after processing with ''getopts''. ''OPTIND'' is initially set to 1, and **needs to be re-set to 1 if you want to parse anything again with getopts**|
|[[syntax:shellvars#OPTARG|OPTARG]]|This variable is set to any argument for an option found by ''getopts''. It also contains the option flag of an unknown option.|
|[[syntax:shellvars#OPTERR|OPTERR]]|(Values 0 or 1) Indicates if Bash should display error messages generated by the ''getopts'' builtin. The value is initialized to **1** on every shell startup - so be sure to always set it to **0** if you don't want to see annoying messages! **''OPTERR'' is not specified by POSIX for the ''getopts'' builtin utility --- only for the C ''getopt()'' function in ''unistd.h'' (''opterr'').** ''OPTERR'' is bash-specific and not supported by shells such as ksh93, mksh, zsh, or dash. |
''getopts'' also uses these variables for error reporting (they're set to value-combinations which arent possible in normal operation).
^''OPTSTRING''|tells ''getopts'' which options to expect and where to expect arguments (see below)|
^''VARNAME''|tells ''getopts'' which shell-variable to use for option reporting|
^''ARGS''|tells ''getopts'' to parse these optional words instead of the positional parameters|
=== The option-string ===
The option-string tells ''getopts'' which options to expect and which of them must have an argument. The syntax is very simple --- every option character is simply named as is, this example-string would tell ''getopts'' to look for ''-f'', ''-A'' and ''-x'':
When you want ''getopts'' to expect an argument for an option, just place a '':'' (colon) after the proper option flag. If you want ''-A'' to expect an argument (i.e. to become ''-A SOMETHING'') just do:
If the **very first character** of the option-string is a '':'' (colon), which would normally be nonsense because there's no option letter preceding it, ''getopts'' switches to "**silent error reporting mode**". In productive scripts, this is usually what you want because it allows you to handle errors yourself without being disturbed by annoying messages.
=== Custom arguments to parse ===
The ''getopts'' utility parses the [[scripting:posparams|positional parameters]] of the current shell or function by default (which means it parses ''"$@"'').
You can give your own set of arguments to the utility to parse. Whenever additional arguments are given after the ''VARNAME'' parameter, ''getopts'' doesn't try to parse the positional parameters, but these given words.
This way, you are able to parse any option set you like, here for example from an array:
Regarding error-reporting, there are two modes ''getopts'' can run in:
* verbose mode
* silent mode
For productive scripts I recommend to use the silent mode, since everything looks more professional, when you don't see annoying standard messages. Also it's easier to handle, since the failure cases are indicated in an easier way.
=== Verbose Mode ===
^invalid option|''VARNAME'' is set to ''?'' (question-mark) and ''OPTARG'' is unset|
^required argument not found|''VARNAME'' is set to ''?'' (question-mark), ''OPTARG'' is unset and an //error message is printed//|
=== Silent Mode ===
^invalid option|''VARNAME'' is set to ''?'' (question-mark) and ''OPTARG'' is set to the (invalid) option character|
^required argument not found|''VARNAME'' is set to '':'' (colon) and ''OPTARG'' contains the option-character in question|
===== Using it =====
==== A first example ====
Enough said - action!
Let's play with a very simple case: only one option (''-a'') expected, without any arguments. Also we disable the //verbose error handling// by preceding the whole option string with a colon ('':''):
Again --- nothing happened. The **very same** case: ''getopts'' didn't see any valid or invalid options (letters preceded by a dash), so it wasn't triggered.
The arguments given to your script are of course accessible as ''$1'' - ''${N}''.
As expected, ''getopts'' didn't accept this option and acted like told above: It placed ''?'' into ''$opt'' and the invalid option character (''b'') into ''$OPTARG''. With our ''case'' statement, we were able to detect this.
* POSIX [[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html#tag_20_54|getopts(1)]] and [[http://pubs.opengroup.org/onlinepubs/9699919799/functions/getopt.html|getopt(3)]]