getopts
getopts is a built-in Unix shell command for parsing command-line arguments.
It is designed to process command line arguments that follow the POSIX Utility Syntax Guidelines.
Contents |
[edit] History
Getopts was first introduced in 1986 in the Bourne shell shipped with Unix SVR3[1]. Earlier versions of the Bourne shell did not have getopts. Note: getopts is not the same as the C library function getopt.
Currently, getopts is available in a number of shells, including: Bourne shell, Korn shell and Bash.
[edit] Related programs
[edit] getopt (original)
The getopts was developed as an improvement to the original getopt Unix program.
The original getopt program has less features than getopts. For example: it did not support whitespaces in arguments, and there was no ability to disable the output of error messages.
The original getopt program was a external command line program (unlike getopts which is a built-in shell command).
[edit] getopt (GNU enhanced)
An alternative to getopts is the GNU enhanced version of getopt. Both being improvements to the original getopt Unix program.
The GNU enhanced version of getopt supports the extra features of getopts plus more advanced features. Most significantly, the GNU enhanced version of getopt supports long option names (e.g. --help) and the options do not have to appear before all the operands (e.g. command option1 option2 option3 -a -b is permitted by the GNU enhanced version of getopt but does not work as expected with getopts).
The GNU enhanced version of getopt is an external command line program (unlike getopts which is a built-in shell command).
[edit] See also
- getopt
- List of Unix programs
- : process command line arguments – Commands & Utilities Reference, The Single UNIX® Specification, Issue 7 from The Open Group
[edit] References
- ^ Mascheck, Sven. "The Traditional Bourne Shell Family". http://www.in-ulm.de/~mascheck/bourne/. Retrieved 2010-12-01.
|
||||||||||||||||||||||||||||||||
| This Unix-related article is a stub. You can help Wikipedia by expanding it. |