8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man1 / getopts.1
blob39d7ef2f094d030f12782641d099bd5fa139f108
1 '\" te
2 .\" Copyright 1989 AT&T
3 .\" Copyright 1992, X/Open Company Limited All Rights Reserved
4 .\" Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved
5 .\" Portions Copyright (c) 1982-2007 AT&T Knowledge Ventures
6 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
7 .\" http://www.opengroup.org/bookstore/.
8 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
9 .\"  This notice shall appear on any product containing this material.
10 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
11 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
12 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
13 .TH GETOPTS 1 "Nov 2, 2007"
14 .SH NAME
15 getopts \- parse utility options
16 .SH SYNOPSIS
17 .LP
18 .nf
19 \fB/usr/bin/getopts\fR \fIoptstring\fR \fIname\fR [\fIarg\fR...]
20 .fi
22 .SS "sh"
23 .LP
24 .nf
25 \fBgetopts\fR \fIoptstring\fR \fIname\fR [\fIargument\fR]...
26 .fi
28 .SS "ksh"
29 .LP
30 .nf
31 \fBgetopts\fR \fIoptstring\fR \fIname\fR [\fIarg\fR]...
32 .fi
34 .SS "ksh93"
35 .LP
36 .nf
37 \fBgetopts\fR [\fB-a\fR \fIname\fR] \fIoptstring\fR \fIname\fR [\fIarg\fR]...
38 .fi
40 .SH DESCRIPTION
41 .SS "/usr/bin/getopts"
42 .sp
43 .LP
44 The \fBgetopts\fR utility can be used to retrieve options and option-arguments
45 from a list of parameters.
46 .sp
47 .LP
48 Each time it is invoked, the \fBgetopts\fR utility places the value of the next
49 option in the shell variable specified by the \fIname\fR operand and the index
50 of the next argument to be processed in the shell variable \fBOPTIND\fR.
51 Whenever the shell is invoked, \fBOPTIND\fR is initialized to \fB1\fR.
52 .sp
53 .LP
54 When the option requires an option-argument, the \fBgetopts\fR utility places
55 it in the shell variable \fBOPTARG\fR. If no option was found, or if the option
56 that was found does not have an option-argument, \fBOPTARG\fR is unset.
57 .sp
58 .LP
59 If an option character not contained in the \fIoptstring\fR operand is found
60 where an option character is expected, the shell variable specified by
61 \fIname\fR is set to the question-mark \fB(\fR \fB?\fR \fB)\fR character. In
62 this case, if the first character in \fIoptstring\fR is a colon (\fB:\fR, the
63 shell variable \fBOPTARG\fR is set to the option character found, but no output
64 is written to standard error; otherwise, the shell variable \fBOPTARG\fR is
65 unset and a diagnostic message is written to standard error. This condition is
66 considered to be an error detected in the way arguments were presented to the
67 invoking application, but is not an error in \fBgetopts\fR processing.
68 .sp
69 .LP
70 If an option-argument is missing:
71 .RS +4
72 .TP
73 .ie t \(bu
74 .el o
75 If the first character of \fIoptstring\fR is a colon, the shell variable
76 specified by \fIname\fR is set to the colon character and the shell variable
77 \fBOPTARG\fR is set to the option character found.
78 .RE
79 .RS +4
80 .TP
81 .ie t \(bu
82 .el o
83 Otherwise, the shell variable specified by \fIname\fR is set to the
84 question-mark character (\fB?\fR), the shell variable \fBOPTARG\fR is unset,
85 and a diagnostic message is written to standard error. This condition is
86 considered to be an error detected in the way arguments were presented to the
87 invoking application, but is not an error in \fBgetopts\fR processing; a
88 diagnostic message is written as stated, but the exit status is zero.
89 .RE
90 .sp
91 .LP
92 When the end of options is encountered, the \fBgetopts\fR utility exits with a
93 return value greater than zero; the shell variable \fBOPTIND\fR is set to the
94 index of the first non-option-argument, where the first \fB\(mi\|\(mi\fR
95 argument is considered to be an option-argument if there are no other
96 non-option-arguments appearing before it, or the value \fB$#\fR + 1 if there
97 are no non-option-arguments; the \fIname\fR variable is set to the
98 question-mark character. Any of the following identifies the end of options:
99 the special option \fB\(mi\|\(mi\fR, finding an argument that does not begin
100 with a \fB\(mi\fR, or encountering an error.
103 The shell variables \fBOPTIND\fR and \fBOPTARG\fR are local to the caller of
104 \fBgetopts\fR and are not exported by default.
107 The shell variable specified by the \fIname\fR operand, \fBOPTIND\fR and
108 \fBOPTARG\fR affect the current shell execution environment.
111 If the application sets \fBOPTIND\fR to the value 1, a new set of parameters
112 can be used: either the current positional parameters or new \fIarg\fR values.
113 Any other attempt to invoke \fBgetopts\fR multiple times in a single shell
114 execution environment with parameters (positional parameters or \fIarg\fR
115 operands) that are not the same in all invocations, or with an \fBOPTIND\fR
116 value modified to be a value other than 1, produces unspecified results.
117 .SS "sh"
120 \fBgetopts\fR is a built-in Bourne shell command used to parse positional
121 parameters and to check for valid options. See \fBsh\fR(1). It supports all
122 applicable rules of the command syntax standard (see Rules 3-10,
123 \fBIntro\fR(1)). It should be used in place of the \fBgetopt\fR command.
126 \fIoptstring\fR must contain the option letters the command using \fBgetopts\fR
127 recognizes. If a letter is followed by a colon, the option is expected to have
128 an argument, or group of arguments, which must be separated from it by white
129 space.
132 Each time it is invoked, \fBgetopts\fR places the next option in the shell
133 variable \fIname\fR and the index of the next argument to be processed in the
134 shell variable \fBOPTIND\fR. Whenever the shell or a shell script is invoked,
135 \fBOPTIND\fR is initialized to \fB1\fR.
138 When an option requires an option-argument, \fBgetopts\fR places it in the
139 shell variable \fBOPTARG\fR.
142 If an illegal option is encountered, \fB?\fR is placed in \fIname\fR.
145 When the end of options is encountered, \fBgetopts\fR exits with a non-zero
146 exit status. The special option \fB-\fR can be used to delimit the end of the
147 options.
150 By default, \fBgetopts\fR parses the positional parameters. If extra arguments
151 (\fIargument\fR .\|.\|.) are specified on the \fBgetopts\fR command line,
152 \fBgetopts\fR parses them instead.
155 \fB/usr/lib/getoptcvt\fR reads the shell script in \fIfilename\fR, converts it
156 to use \fBgetopts\fR instead of \fBgetopt\fR, and writes the results on the
157 standard output.
160 So that all new commands adhere to the command syntax standard described in
161 \fBIntro\fR(1), they should use \fBgetopts\fR or \fBgetopt\fR to parse
162 positional parameters and check for options that are valid for that command.
165 \fBgetopts\fR prints an error message on the standard error when it encounters
166 an option letter not included in \fIoptstring\fR.
169 Although the following command syntax rule (see \fBIntro\fR(1)) relaxations are
170 permitted under the current implementation, they should not be used because
171 they can not be supported in future releases of the system. As in the EXAMPLES
172 section below, \fB-a\fR and \fB-b\fR are options, and the option \fB-o\fR
173 requires an option-argument.
176 The following example violates Rule 5: options with option-arguments must not
177 be grouped with other options:
179 .in +2
181 example% \fBcmd -aboxxx filename\fR
183 .in -2
188 The following example violates Rule 6: there must be white space after an
189 option that takes an option-argument:
191 .in +2
193 example% \fBcmd -ab oxxx filename\fR
195 .in -2
200 Changing the value of the shell variable \fBOPTIND\fR or parsing different sets
201 of arguments can lead to unexpected results.
202 .SS "ksh"
205 Checks \fIarg\fR for legal options. If \fIarg\fR is omitted, the positional
206 parameters are used. An option argument begins with a \fB+\fR or a
207 \fB\(mi\fR\&. An option not beginning with \fB+\fR or \fB\(mi\fR or the
208 argument \fB-\fR ends the options. \fIoptstring\fR contains the letters that
209 \fBgetopts\fR recognizes. If a letter is followed by a \fB:\fR, that option is
210 expected to have an argument. The options can be separated from the argument by
211 blanks.
214 \fBgetopts\fR places the next option letter it finds inside variable \fIname\fR
215 each time it is invoked with a \fB+\fR prepended when \fIarg\fR begins with a
216 \fB+\fR. The index of the next \fIarg\fR is stored in \fBOPTIND\fR. The option
217 argument, if any, gets stored in \fBOPTARG\fR.
220 A leading \fB:\fR in \fIoptstring\fR causes \fBgetopts\fR to store the letter
221 of an invalid option in \fBOPTARG\fR, and to set \fIname\fR to \fB?\fR for an
222 unknown option and to \fB:\fR when a required option is missing. Otherwise,
223 \fBgetopts\fR prints an error message. The exit status is \fBnon-zero\fR when
224 there are no more options.
227 \fBgetopts\fR supports both traditional single-character short options and long
228 options defined by Sun's Command Line Interface Paradigm (\fBCLIP\fR).
231 Each long option is an alias for a short option and is specified in parentheses
232 following its equivalent short option. For example, you can specify the long
233 option \fBfile\fR as an alias for the short option \fBf\fR using the following
234 script line:
236 .in +2
238 getopts "f(file)" opt
240 .in -2
245 Precede long options on the command line with \fB--\fR or \fB++\fR. In the
246 example above, \fB--file\fR on the command line would be the equivalent of
247 \fB-f\fR, and \fB++file\fR on the command line would be the equivalent of
248 \fB+f\fR.
251 Each short option can have multiple long option equivalents, although this is
252 in violation of the CLIP specification and should be used with caution. You
253 must enclose each long option equivalent parentheses, as follows:
255 .in +2
257 getopts "f:(file)(input-file)o:(output-file)"
259 .in -2
264 In the above example, both \fB--file\fR and \fB--input-file\fR are the
265 equivalent of \fB-f\fR, and \fB--output-file\fR is the equivalent of \fB-o\fR.
268 The variable name is always set to a short option. When a long option is
269 specified on the command line, name is set to the short-option equivalent.
272 For a further discussion of the Korn shell's \fBgetopts\fR built-in command,
273 see the previous discussion in the Bourne shell (\fBsh\fR) section of this
274 manpage.
275 .SS "ksh93"
278 The \fBgetopts\fR utility can be used to retrieve options and arguments from a
279 list of arguments specified by \fIarg\fRs or the positional parameters if
280 \fIarg\fR is omitted. It can also generate usage messages and a manual page for
281 the command based on the information in \fIoptstring\fR.
284 Each time it is invoked, the \fBgetopts\fR utility places the value of the next
285 option in the shell variable specified by the \fIname\fR operand and the index
286 of the next argument to be processed in the shell variable \fBOPTIND\fR. When
287 the shell is invoked \fBOPTIND\fR is initialized to \fB1\fR. When an option
288 requires or permits an option argument, \fBgetopts\fR places the option
289 argument in the shell variable \fBOPTARG\fR. Otherwise \fBOPTARG\fR is set to
290 \fB1\fR when the option is set and \fB0\fR when the option is \fBunset\fR.
293 The \fIoptstring\fR string consists of alphanumeric characters, the special
294 characters \fB+\fR, \fB-\fR, \fB?\fR, \fB:\fR, and SPACE or character groups
295 enclosed in \fB[...]\fR. Character groups can be nested in \fB{...}\fR. Outside
296 of a \fB[...]\fR group, a single NEWLINE followed by zero or more blanks is
297 ignored. One or more blank lines separate the options from the command argument
298 synopsis.
301 Each \fB[...]\fR group consists of an optional label, optional attributes
302 separated by \fB:\fR, and an optional description string following \fB?\fR. The
303 characters from the \fB?\fR to the end of the next \fB]\fR are ignored for
304 option parsing and short usage messages. They are used for generating verbose
305 help or man pages. The \fB:\fR character can not appear in the label. The
306 \fB?\fR character must be specified as \fB??\fR in the label and the \fB]\fR
307 character must be specified as \fB]]\fR in the description string. Text between
308 two \fB\eb\fR (backspace) characters indicates that the text should be
309 emboldened when displayed. Text between two \fB\ea\fR (bell) characters
310 indicates that the text should be emphasized or italicized when displayed. Text
311 between two \fB\ev\fR (vertical tab) characters indicates that the text should
312 displayed in a fixed-width font. Text between two \fB\ef\fR (form feed)
313 characters is replaced by the output from the shell function whose name is that
314 of the enclosed text.
317 All output from this interface is written to the standard error.
320 There are several group types:
321 .RS +4
324 A group of the form
326 .in +2
328 \fB[-[\fR\fIversion\fR][\fIflag\fR[\fInumber\fR\fB]]...[?\fR\fItext\fR\fB]]\fR
330 .in -2
333 which appears as the first group enables the extended interface.
335 \fIversion\fR specifies the interface version, currently 1. The latest version
336 is assumed if version is omitted. Future enhancements can increment
337 \fIversion\fR, but all versions are supported. \fItext\fR typically specifies
338 an SCCS or CVS identification string. Zero or more flags with optional number
339 values can be specified to control option parsing. The flags are:
341 .ne 2
343 \fB\fBc\fR\fR
345 .RS 5n
346 Cache this \fIoptstring\fR for multiple passes. Used to optimize built-ins that
347 can be called many times within the same process.
351 .ne 2
353 \fB\fBi\fR\fR
355 .RS 5n
356 Ignore this \fIoptstring\fR when generating help. Used when combining
357 \fIoptstring\fR values from multiple passes.
361 .ne 2
363 \fB\fBl\fR\fR
365 .RS 5n
366 Display only long option names in help messages.
370 .ne 2
372 \fB\fBo\fR\fR
374 .RS 5n
375 The \fB-\fR option character prefix is optional. This supports the obsolete
376 \fBps\fR(1) option syntax.
380 .ne 2
382 \fB\fBp\fR\fR
384 .RS 5n
385 The number specifies the number of \fB-\fR characters that must prefix long
386 option names. The default is \fB2\fR. \fB0\fR, \fB1\fR or \fB2\fR are accepted,
387 for example \fBp0\fR for \fBdd\fR(1M) and \fBp1\fR for \fBfind\fR(1).
391 .ne 2
393 \fB\fBs\fR\fR
395 .RS 5n
396 The number specifies the manual page section number, \fB1\fR by default.
400 .RS +4
403 An option specification of the form
404 \fB[\fR\fIoption\fR\fB[!][=\fR\fInumber\fR\fB][:\fR\fIlongname\fR\fB][?\fR\fItext\fR\fB]]\fR.
405 In this case the first field is the option character, which is the value
406 returned in the name operand when the option is matched. If there is no option
407 character then a two or more digit number should be specified. This number is
408 returned as the value of the name operand if the long option is matched. If
409 option is followed by a \fB!\fR then the option character sense is the inverse
410 of the \fIlongname\fR sense. For options that do not take values \fBOPTARG\fR
411 is set to \fB0\fR for \fB!\fR inverted option characters and \fB1\fR
412 otherwise. \fI=number\fR optionally specifies a number to be returned in the
413 \fIname\fR operand instead of the option character. A \fIlongname\fR is
414 specified by \fB--longname\fR and is matched by the shortest non-ambiguous
415 prefix of all long options. An \fB*\fR in the \fBlongname\fR field indicates
416 that only characters up to that point need to match, provided any additional
417 characters match exactly. The enclosing \fB[\fR and \fB]\fR can be omitted for
418 an option that does not have a \fBlongname\fR or descriptive text.
420 .RS +4
423 An option argument specification. Options that take arguments can be
424 followed by \fB:\fR, indicating a string value or \fB#\fR, indicating a numeric
425 value, and an option argument specification. An option argument specification
426 consists of the option argument name as field 1. The remaining : separated
427 fields are a type name and zero or more of the special attribute words
428 \fBlistof\fR, \fBoneof\fR, and \fBignorecase\fR. A default option value can be
429 specified in the final field as :=default. The option argument specification
430 can be followed by a list of option value descriptions enclosed in braces. A
431 long option that takes an argument is specified as
432 \fB--longname=\fR\fIvalue\fR. If the \fB:\fR or \fB#\fR is followed by \fB?\fR,
433 the option argument is optional. If only the option character form is specified
434 then the optional argument value is not set if the next argument starts with
435 \fB-\fR or \fB+\fR.
437 .RS +4
440 An option value description.
442 .RS +4
445 An argument specification. A list of valid option argument values can be
446 specified by enclosing them inside a \fB{...}\fR following the option argument
447 specification. Each of the permitted values can be specified with a \fB[...]\fR
448 containing the value followed by a description.
450 .RS +4
453 A group of the form \fB[+\fR\fB\e\fR\fIn\fR\fB\&...]\fR displays the
454 characters representing \fB\&...\fR in fixed-width font without adding line
455 breaks.
457 .RS +4
460 A group of the form \fB[+\fR\fIname\fR\fB?\fR\fItext\fR\fB]\fR specifies a
461 section name with descriptive text. If \fIname\fR is omitted, \fItext\fR is
462 placed in a new paragraph.
464 .RS +4
467 A group of the form \fB[-\fR\fIname\fR\fB?\fR\fItext\fR\fB]\fR specifies
468 entries for the \fBIMPLEMENTATION\fR section.
472 If the leading character of \fIoptstring\fR is \fB+\fR, arguments beginning
473 with \fB+\fR are also be considered options.
476 A leading \fB:\fR character or a : following a leading \fB+\fR in
477 \fIoptstring\fR affects the way errors are handled. If an option character or
478 \fBlongname\fR argument not specified in \fIoptstring\fR is encountered when
479 processing options, the shell variable whose name is name is set to the \fB?\fR
480 character. The shell variable \fBOPTARG\fR is set to the character found. If an
481 option argument is missing or has an invalid value, then name is set to the
482 \fB:\fR character and the shell variable \fBOPTARG\fR is set to the option
483 character found. Without the leading \fB:\fR, \fIname\fR is set to the \fB?\fR
484 character, \fBOPTARG\fR is unset, and an error message is written to standard
485 error when errors are encountered.
488 The end of options occurs when:
489 .RS +4
492 The special argument \fB--\fR is encountered.
494 .RS +4
497 An argument that does not begin with a \fB-\fR is encountered.
499 .RS +4
502 A help argument is specified.
504 .RS +4
507 An error is encountered.
511 If \fBOPTIND\fR is set to the value \fB1\fR, a new set of arguments can be
512 used.
515 \fBgetopts\fR can also be used to generate help messages containing command
516 usage and detailed descriptions. Specify \fIargs\fR as:
518 .ne 2
520 \fB\fB-?\fR\fR
522 .RS 13n
523 Use this to generate a usage synopsis.
527 .ne 2
529 \fB\fB--??\fR\fR
531 .RS 13n
532 Use this to generate a verbose usage message.
536 .ne 2
538 \fB\fB--??man\fR\fR
540 .RS 13n
541 Use this to generate a formatted manual page.
545 .ne 2
547 \fB\fB--??api\fR\fR
549 .RS 13n
550 Use this to generate an easy to parse usage message.
554 .ne 2
556 \fB\fB--??html\fR\fR
558 .RS 13n
559 Use this to generate a man page in \fBhtml\fR format.
563 .ne 2
565 \fB\fB--??nroff\fR\fR
567 .RS 13n
568 Use this to generate a man page in \fBnroff\fR format.
572 .ne 2
574 \fB\fB--??usage\fR\fR
576 .RS 13n
577 Use this to list the current \fBoptstring\fR.
581 .ne 2
583 \fB\fB--???name\fR\fR
585 .RS 13n
586 Use this to list \fBversion=\fR\fIn\fR, where \fIn\fR is greater than \fB0\fR,
587 if the option \fIname\fR is recognized by \fBgetopts\fR.
592 When the end of options is encountered, \fBgetopts\fR exits with a
593 \fBnon-zero\fR return value and the variable \fBOPTIND\fR is set to the index
594 of the first non-option argument.
595 .SH OPTIONS
596 .SS "ksh93"
599 The following options are supported by \fBksh93\fR:
601 .ne 2
603 \fB\fB-a\fR \fIname\fR\fR
605 .RS 11n
606 Use \fIname\fR instead of the command name in usage messages.
609 .SH OPERANDS
612 The following operands are supported:
614 .ne 2
616 \fB\fIoptstring\fR\fR
618 .RS 13n
619 A string containing the option characters recognised by the utility invoking
620 \fBgetopts\fR. If a character is followed by a colon, the option is expected to
621 have an argument, which should be supplied as a separate argument. Applications
622 should specify an option character and its option-argument as separate
623 arguments, but \fBgetopts\fR interprets the characters following an option
624 character requiring arguments as an argument whether or not this is done. An
625 explicit null option-argument need not be recognised if it is not supplied as a
626 separate argument when \fBgetopts\fR is invoked; see \fBgetopt\fR(3C). The
627 characters question-mark (\fB?\fR) and colon (\fB:\fR) must not be used as
628 option characters by an application. The use of other option characters that
629 are not alphanumeric produces unspecified results. If the option-argument is
630 not supplied as a separate argument from the option character, the value in
631 \fBOPTARG\fR is stripped of the option character and the \fB\(mi\fR\&. The
632 first character in \fIoptstring\fR determines how \fBgetopts\fR behaves if an
633 option character is not known or an option-argument is missing.
637 .ne 2
639 \fB\fIname\fR\fR
641 .RS 13n
642 The name of a shell variable that is set by the \fBgetopts\fR utility to the
643 option character that was found.
648 The \fBgetopts\fR utility by default parses positional parameters passed to the
649 invoking shell procedure. If \fIarg\fRs are specified, they are parsed instead
650 of the positional parameters.
651 .SH USAGE
654 Since \fBgetopts\fR affects the current shell execution environment, it is
655 generally provided as a shell regular built-in. If it is called in a subshell
656 or separate utility execution environment, such as one of the following:
658 .in +2
660       (getopts abc value "$@")
661        nohup getopts ...
662        find . -exec getopts ... \e;
664 .in -2
668 it does not affect the shell variables in the caller's environment.
671 Notice that shell functions share \fBOPTIND\fR with the calling shell even
672 though the positional parameters are changed. Functions that want to use
673 \fBgetopts\fR to parse their arguments usually want to save the value of
674 \fBOPTIND\fR on entry and restore it before returning. However, there are cases
675 when a function wants to change \fBOPTIND\fR for the calling shell.
676 .SH EXAMPLES
678 \fBExample 1 \fRParsing and Displaying Arguments
681 The following example script parses and displays its arguments:
684 .in +2
686 aflag=
687 bflag=
688 while getopts ab: name
690      case $name in
691      a)      aflag=1;;
692      b)      bflag=1
693              bval="$OPTARG";;
694      ?)     printf "Usage: %s: [-a] [-b value] args\en"  $0
695             exit 2;;
696      esac
697 done
698 if [ ! -z "$aflag" ]; then
699    printf "Option -a specified\en"
701 if [ ! -z "$bflag" ]; then
702      printf 'Option -b "%s" specified\en' "$bval"
704 shift $(($OPTIND - 1))
705 printf "Remaining arguments are: %s\en" "$*"
707 .in -2
710 \fBExample 2 \fRProcessing Arguments for a Command with Options
713 The following fragment of a shell program processes the arguments for a command
714 that can take the options \fB-a\fR or \fB-b\fR. It also processes the option
715 \fB-o\fR, which requires an option-argument:
718 .in +2
720 while getopts abo: c
722       case $c in
723      a | b)   FLAG=$c;;
724      o)       OARG=$OPTARG;;
725      \e?)      echo $USAGE
726         exit 2;;
727      esac
728 done
729 shift `expr $OPTIND \(mi 1`
731 .in -2
734 \fBExample 3 \fREquivalent Code Expressions
737 This code example accepts any of the following as equivalent:
740 .in +2
742 cmd -a -b -o "xxx z yy" filename
743 cmd -a -b -o "xxx z yy" -- filename
744 cmd -ab -o xxx,z,yy filename
745 cmd -ab -o "xxx z yy" filename
746 cmd -o xxx,z,yy -b -a filename
748 .in -2
751 .SH ENVIRONMENT VARIABLES
754 See \fBenviron\fR(5) for descriptions of the following environment variables
755 that affect the execution of \fBgetopts\fR: \fBLANG\fR, \fBLC_ALL\fR,
756 \fBLC_CTYPE\fR, \fBLC_MESSAGES\fR, and \fBNLSPATH\fR.
758 .ne 2
760 \fB\fBOPTIND\fR\fR
762 .RS 10n
763 This variable is used by \fBgetopts\fR as the index of the next argument to be
764 processed.
768 .ne 2
770 \fB\fBOPTARG\fR\fR
772 .RS 10n
773 This variable is used by \fBgetopts\fR to store the argument if an option is
774 using arguments.
777 .SH EXIT STATUS
780 The following exit values are returned:
782 .ne 2
784 \fB\fB0\fR\fR
786 .RS 6n
787 An option, specified or unspecified by \fIoptstring\fR, was found.
791 .ne 2
793 \fB\fB>0\fR\fR
795 .RS 6n
796 The end of options was encountered or an error occurred.
799 .SS "ksh93"
802 The following exit values are returned by \fBksh93\fR:
804 .ne 2
806 \fB\fB0\fR\fR
808 .RS 5n
809 A specified option was found.
813 .ne 2
815 \fB\fB1\fR\fR
817 .RS 5n
818 An end of options was encountered.
822 .ne 2
824 \fB\fB2\fR\fR
826 .RS 5n
827 A usage or information message was generated.
830 .SH ATTRIBUTES
833 See \fBattributes\fR(5) for descriptions of the following attributes:
834 .SS "/usr/bin/getopts, sh, ksh"
839 box;
840 c | c
841 l | l .
842 ATTRIBUTE TYPE  ATTRIBUTE VALUE
844 Interface Stability     Committed
846 Standard        See \fBstandards\fR(5).
849 .SS "ksh93"
854 box;
855 c | c
856 l | l .
857 ATTRIBUTE TYPE  ATTRIBUTE VALUE
859 Interface Stability     Uncommitted
862 .SH SEE ALSO
865 \fBIntro\fR(1), \fBgetoptcvt\fR(1), \fBksh\fR(1), \fBksh93\fR(1), \fBps\fR(1),
866 \fBsh\fR(1), \fBgetopt\fR(3C), \fBattributes\fR(5), \fBenviron\fR(5),
867 \fBstandards\fR(5)
868 .SH DIAGNOSTICS
871 Whenever an error is detected and the first character in the \fIoptstring\fR
872 operand is not a colon (\fB:\fR), a diagnostic message is written to standard
873 error with the following information in an unspecified format:
874 .RS +4
876 .ie t \(bu
877 .el o
878 The invoking program name is identified in the message. The invoking program
879 name is the value of the shell special parameter \fB0\fR at the time the
880 \fBgetopts\fR utility is invoked. A name equivalent to
882 .in +2
884 \fIbasename\fR "$0"
886 .in -2
888 can be used.
890 .RS +4
892 .ie t \(bu
893 .el o
894 If an option is found that was not specified in \fIoptstring\fR, this error is
895 identified and the invalid option character is identified in the message.
897 .RS +4
899 .ie t \(bu
900 .el o
901 If an option requiring an option-argument is found, but an option-argument is
902 not found, this error is identified and the invalid option character is
903 identified in the message.