1 .\" $NetBSD: getopt.3,v 1.31 2003/09/23 10:26:54 wiz Exp $
3 .\" Copyright (c) 1988, 1991, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 4. Neither the name of the University nor the names of its contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" @(#)getopt.3 8.5 (Berkeley) 4/27/95
31 .\" $FreeBSD: src/lib/libc/stdlib/getopt.3,v 1.26 2007/01/09 00:28:10 imp Exp $
38 .Nd get option character from command line argument list
43 .Vt extern char *optarg ;
44 .Vt extern int optind ;
45 .Vt extern int optopt ;
46 .Vt extern int opterr ;
47 .Vt extern int optreset ;
49 .Fn getopt "int argc" "char * const argv[]" "const char *optstring"
53 function incrementally parses a command line argument list
58 An option character is
60 if it has been specified in the string of accepted option characters,
65 may contain the following elements: individual characters, and
66 characters followed by a colon to indicate an option argument
68 For example, an option string
74 recognizes an option and argument
75 .Dq Fl x Ar argument .
78 if a following argument has leading white space.
83 points to an option argument, if it is anticipated,
86 contains the index to the next
88 argument for a subsequent call
95 option character returned by
102 are both initialized to 1.
105 variable may be set to another value before a set of calls to
107 in order to skip over more or less argv entries.
111 to evaluate multiple sets of arguments, or to evaluate a single set of
112 arguments multiple times,
115 must be set to 1 before the second and each additional set of calls to
119 must be reinitialized.
123 function returns \-1 when the argument list is exhausted.
124 The interpretation of options in the argument list may be cancelled
127 (double dash) which causes
129 to signal the end of argument processing and return \-1.
130 When all options have been processed (i.e., up to the first non-option
137 function returns the next known option character in
141 encounters a character not found in
143 or if it detects a missing option argument,
151 then a missing option argument causes
153 to be returned instead of
155 In either case, the variable
157 is set to the character that caused the error.
160 function returns \-1 when the argument list is exhausted.
162 .Bd -literal -compact
167 while ((ch = getopt(argc, argv, "bf:")) != -1) {
173 if ((fd = open(optarg, O_RDONLY, 0)) \*[Lt] 0) {
174 (void)fprintf(stderr,
175 "myname: %s: %s\en", optarg, strerror(errno));
190 function encounters a character not found in the string
193 a missing option argument it writes an error message to the
199 to a zero will disable these error messages.
204 then a missing option argument causes a
206 to be returned in addition to suppressing any error messages.
208 Option arguments are allowed to begin with
210 this is reasonable but reduces the amount of error checking possible.
218 variable was added to make it possible to call the
220 function multiple times.
221 This is an extension to the
232 function was once specified to return
244 may be specified as a character in
248 have an argument associated with it.
251 to be used with programs that expect
254 This practice is wrong, and should not be used in any current development.
255 It is provided for backward compatibility
257 Care should be taken not to use
259 as the first character in
261 to avoid a semantic conflict with
264 which assigns different meaning to an
268 By default, a single dash causes
272 It is also possible to handle digits as option letters.
275 to be used with programs that expect a number
278 This practice is wrong, and should not be used in any current development.
279 It is provided for backward compatibility
281 The following code fragment works in most cases.
282 .Bd -literal -offset indent
287 while ((ch = getopt(argc, argv, "0123456789")) != -1)
289 case '0': case '1': case '2': case '3': case '4':
290 case '5': case '6': case '7': case '8': case '9':
291 p = argv[optind - 1];
292 if (p[0] == '-' \*[Am]\*[Am] p[1] == ch \*[Am]\*[Am] !p[2]) {
295 } else if (argv[optind] \*[Am]\*[Am] argv[optind][1] == ch) {
296 length = strtol((p = argv[optind] + 1),
303 errx(EX_USAGE, "illegal number -- %s", p);