2002-06-30 01:25:07 -04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
2000-09-04 02:09:54 -04:00
|
|
|
|
2008-05-15 15:27:52 -04:00
|
|
|
/*
|
|
|
|
|
* This material, written by Henry Spencer, was released by him
|
|
|
|
|
* into the public domain and is thus not subject to any copyright.
|
|
|
|
|
*/
|
|
|
|
|
|
1993-07-26 18:22:37 -04:00
|
|
|
#include <stdio.h>
|
2001-06-24 15:50:42 -04:00
|
|
|
#include <stdlib.h>
|
2000-09-04 02:09:54 -04:00
|
|
|
#include <unistd.h>
|
1993-07-26 18:22:37 -04:00
|
|
|
|
2001-12-03 15:57:49 -05:00
|
|
|
int
|
2002-09-04 19:29:10 -04:00
|
|
|
main(int argc, char *argv[])
|
1993-07-26 18:22:37 -04:00
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
|
|
optind = 2; /* Past the program name and the option letters. */
|
1997-03-28 23:34:07 -05:00
|
|
|
while ((c = getopt(argc, argv, argv[1])) != -1)
|
1993-07-26 18:22:37 -04:00
|
|
|
switch (c) {
|
|
|
|
|
case '?':
|
|
|
|
|
status = 1; /* getopt routine gave message */
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (optarg != NULL)
|
1999-04-03 19:25:39 -05:00
|
|
|
printf(" -%c %s", c, optarg);
|
1993-07-26 18:22:37 -04:00
|
|
|
else
|
|
|
|
|
printf(" -%c", c);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
printf(" --");
|
|
|
|
|
for (; optind < argc; optind++)
|
|
|
|
|
printf(" %s", argv[optind]);
|
|
|
|
|
printf("\n");
|
2002-04-28 10:04:24 -04:00
|
|
|
return status;
|
1993-07-26 18:22:37 -04:00
|
|
|
}
|