Getopt should not be confused with getopts.
Getopt is a C library function used to parse command-line options of the Unix/POSIX style. It is a part of the POSIX specification, and is universal to Unix-like systems.It is also the name of a Unix program for parsing command line arguments in shell scripts.
A long-standing issue with command line programs was how to specify options; early programs used many ways of doing so, including single character options (-a
), multiple options specified together (-abc
is equivalent to -a -b -c
), multicharacter options (-inum
), options with arguments (-a arg
, -inum 3
, -a=arg
), and different prefix characters (-a
, +b
, /c
).
The function was written to be a standard mechanism that all programs could use to parse command-line options so that there would be a common interface on which everyone could depend. As such, the original authors picked out of the variations support for single character options,multiple options specified together, and options with arguments (-a arg
or -aarg
), all controllable by an option string.
dates back to at least 1980[1] and was first published by AT&T at the 1985 UNIFORUM conference in Dallas, Texas, with the intent for it to be available in the public domain.[2] Versions of it were subsequently picked up by other flavors of Unix (4.3BSD, Linux, etc.). It is specified in the POSIX.2 standard as part of the unistd.h header file. Derivatives of have been created for many programming languages to parse command-line options.
A POSIX-standard companion function to [3] is .[4] It parses a string of comma-separated sub-options. It appeared in 4.4BSD (1995).
is a system dependent function, and its behavior depends on the implementation in the C library. Some custom implementations like gnulib are available, however.
The conventional (POSIX and BSD) handling is that the options end when the first non-option argument is encountered, and that would return -1 to signal that. In the glibc extension, however, options are allowed anywhere for ease of use; implicitly permutes the argument vector so it still leaves the non-options in the end. Since POSIX already has the convention of returning -1 on and skipping it, one can always portably use it as an end-of-options signifier.[5]
A GNU extension, getopt_long, allows parsing of more readable, multicharacter options, which are introduced by two dashes instead of one. The choice of two dashes allows multicharacter options (--inum
) to be differentiated from single character options specified together (-abc
). The GNU extension also allows an alternative format for options with arguments: --name=arg
.[5] This interface proved popular, and has been taken up (sans the permutation) by many BSD distributions including FreeBSD as well as Solaris. An alternative way to support long options is seen in Solaris and Korn Shell (extending optstring), but it was not as popular.[6]
Another common advanced extension of getopt is resetting the state of argument parsing; this is useful as a replacement of the options-anyware GNU extension, or as a way to "layer" a set of command-line interface with different options at different levels. This is achieved in BSD systems using an variable, and on GNU systems by setting to 0.[5]
The command-line syntaxes for getopt-based programs is the POSIX-recommended Utility Argument Syntax. In short:[7]
-
(hyphen-minus) character.:
after the option name (only during initial specification)o
takes an argument, -ofoo
is the same as -o foo
.a
and b
take no arguments while e
takes an optional argument, -abe
is the same as -a -b -e
, but -bea
is not the same as -b -e a
due to the preceding rule.--
always marks the end of options.Extensions on the syntax include the GNU convention and Sun's specification.[8] [9]
The getopt manual from GNU specifies such a usage for getopt:
int getopt(int argc, char * const argv[], const char *optstring);Here the and are defined exactly like they are in the C function prototype; i.e., argc indicates the length of the argv array-of-strings. The contains a specification of what options to look for (normal alphanumerals except), and what options to accept arguments (colons). For example, refers to three options: an argumentless, an optional-argument, and a mandatory-argument . GNU here implements a extension for long option synonyms.
itself returns an integer that is either an option character or -1 for end-of-options. The idiom is to use a while-loop to go through options, and to use a switch-case statement to pick and act on options. See the example section of this article.
To communicate extra information back to the program, a few global variables are referenced by the program to fetch information from :
The GNU extension interface is similar, although it belongs to a different header file and takes an extra option for defining the "short" names of long options and some extra controls. If a short name is not defined, getopt will put an index referring to the option structure in the pointer instead.
int getopt_long(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex);
int main (int argc, char **argv)
int main (int argc, char **argv)
See main article: getopts. Shell script programmers commonly want to provide a consistent way of providing options. To achieve this goal, they turn to getopts and seek to port it to their own language.
The first attempt at porting was the program getopt, implemented by Unix System Laboratories (USL). This version was unable to deal with quoting and shell metacharacters, as it shows no attempts at quoting. It has been inherited to FreeBSD.
In 1986, USL decided that being unsafe around metacharacters and whitespace was no longer acceptable, and they created the builtin getopts command for Unix SVR3 Bourne Shell instead. The advantage of building the command into the shell is that it now has access to the shell's variables, so values could be written safely without quoting. It uses the shell's own variables to track the position of current and argument positions, and, and returns the option name in a shell variable.
In 1995, getopts
was included in the Single UNIX Specification version 1 / X/Open Portability Guidelines Issue 4.[10] Now a part of the POSIX Shell standard, getopts have spread far and wide in many other shells trying to be POSIX-compliant.
getopt was basically forgotten until util-linux came out with an enhanced version that fixed all of old getopt's problems by escaping. It also supports GNU's long option names. On the other hand, long options have been implemented rarely in the command in other shells, ksh93 being an exception.
getopt is a concise description of the common POSIX command argument structure, and it is replicated widely by programmers seeking to provide a similar interface, both to themselves and to the user on the command-line.