GETOPT(3C) — HP-UX
NAME
getopt, optarg, optind, opterr − get option letter from argument vector
SYNOPSIS
int getopt (argc, argv, optstring)
int argc;
char ∗∗argv, ∗opstring;
extern char ∗optarg;
extern int optind, opterr;
DESCRIPTION
Getopt returns the next option letter in argv (starting from argv[1]) that matches a letter in optstring. Optstring is a string of recognized option letters; if a letter is followed by a colon, the option is expected to have an argument that may or may not be separated from it by white space. Optarg is set to point to the start of the option argument on return from getopt.
Getopt places in optind the argv index of the next argument to be processed. The external variable optind is initialized to 1 before the first call to the function getopt.
When all options have been processed (i.e., up to the first non-option argument), getopt returns EOF. The special option −− may be used to delimit the end of the options; EOF will be returned, and −− will be skipped.
DIAGNOSTICS
Getopt prints an error message on stderr and returns a question mark (?) when it encounters an option letter not included in optstring. This error message may be disabled by setting opterr to zero.
EXAMPLES
The following code fragment shows how one might process the arguments for a command that can take the mutually exclusive options a and b, and the options f and o, both of which require arguments:
main (argc, argv)
int argc;
char ∗∗argv;
{
int c;
extern char ∗optarg;
extern int optind;
.
.
.
while ((c = getopt(argc, argv, "abf:o:")) != EOF)
switch (c) {
case ´a´:
if (bflg)
errflg++;
else
aflg++;
break;
case ´b´:
if (aflg)
errflg++;
else
bproc( );
break;
case ´f´:
ifile = optarg;
break;
case ´o´:
ofile = optarg;
break;
case ´?´:
errflg++;
}
if (errflg) {
fprintf(stderr, "usage: . . . ");
exit (2);
}
for ( ; optind < argc; optind++) {
if (access(argv[optind], 4)) {
.
.
.
}
WARNINGS
Options can be any ASCII characters except colon (:), question mark (?), or null (\0). It is impossible to distinguish between a ? used as a legal option, and the character that getopt returns when it encounters an invalid option character in the input.
SEE ALSO
INTERNATIONAL SUPPORT
8- and 16-bit data.
Hewlett-Packard Company — May 11, 2021