Can I use getopt to process options in a certain order?

后端 未结 2 499
耶瑟儿~
耶瑟儿~ 2021-01-17 05:22

I\'m implementing a command line tool, and I need to be able to handle a bunch of options. Some of the options must terminate the program after they\'re done. For example I

2条回答
  •  别那么骄傲
    2021-01-17 06:06

    There are two main ways to process the options read by getopt(). One is to do the action associated with an option as getopt() identifies it before reading the rest of the options; the other is to read all the options before doing any processing. (Programs not infrequently implement hybrid solutions; some options are acted on while parsing the arguments but others are simply noted and the actions taken after the arguments are processed.)

    In your situation, it seems likely that you need to parse all the options before doing any processing. If both -a and -b terminate the program after doing the action, then they're mutually exclusive options and you should probably diagnose that as an erroneous invocation of your program. You will need to decide whether it is OK to allow -c as well as either -a or -b.

    Quite often, you will have pairs of options that are required to work together, or you need to know whether one, the other, or both have been specified before deciding what to do. Another issue to consider is what it means if an option is repeated on the command line.

提交回复
热议问题