#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main(int argc, char *argv[])
{
    int c;

    c = getopt(argc, argv, "b:");
    printf("c=%c optarg=%s optind=%d\n", c, optarg, optind);
    exit(EXIT_SUCCESS);
}
