8 .Nd parse command options
10 .Nm args=\`getopt Ar optstring $*\`
11 ; errcode=$?; set \-\- $args
15 utility is used to break up options in command lines for easy parsing by
16 shell procedures, and to check for legal options.
18 is a string of recognized option letters (see
20 if a letter is followed by a colon, the option
21 is expected to have an argument which may or may not be
22 separated from it by white space.
25 is used to delimit the end of the options.
30 in the arguments at the end of the options,
31 or recognize it if used explicitly.
33 (\fB$1 $2\fR ...) are reset so that each option is
36 and in its own shell argument;
37 each option argument is also in its own shell argument.
41 utility prints an error message on the standard error output and exits with
42 status > 0 when it encounters an option letter not included in
45 The following code fragment shows how one might process the arguments
46 for a command that can take the options
52 which requires an argument.
54 .Bd -literal -offset indent
55 args=\`getopt abo: $*\`
56 # you should not use \`getopt abo: "$@"\` since that would parse
57 # the arguments differently from what the set command below does.
64 # You cannot use the set command with a backquoted getopt directly,
65 # since the exit code from getopt would be shadowed by those of set,
66 # which is zero by definition.
72 echo flag $i set; sflags="${i#-}$sflags";
75 echo oarg is "'"$2"'"; oarg="$2"; shift;
81 echo single-char flags: "'"$sflags"'"
82 echo oarg is "'"$oarg"'"
85 This code will accept any of the following as equivalent:
87 .Bd -literal -offset indent
89 cmd \-a \-o arg file file
90 cmd \-oarg -a file file
91 cmd \-a \-oarg \-\- file file
100 working from a Bell Labs manual page.
101 Behavior believed identical to the Bell version.
110 Arguments containing white space or embedded shell metacharacters
111 generally will not survive intact; this looks easy to fix but
115 or the example in this manpage should check the history of this file
119 The error message for an invalid option is identified as coming
122 rather than from the shell procedure containing the invocation
125 this again is hard to fix.
127 The precise best way to use the
129 command to set the arguments without disrupting the value(s) of
130 shell options varies from one shell version to another.
132 Each shellscript has to carry complex code to parse arguments halfway
133 correctly (like the example presented here).
134 A better getopt-like tool
135 would move much of the complexity into the tool and keep the client
136 shell scripts simpler.