Hello all,
I’m using OptionParser to parse command line options. I’ve figured out
how
to handle options for each flag (i.e. opts.on(’–port PORT’)), but I’m
not
sure how to handle command line arguments that aren’t associated with a
flag. For example, say I wanted to parse a file with my file_parser
executable using a certain type of parser. I’d like to say “file_parser
–type CDF <file_name>”. I know how to get the type of parser to use
(see
above), but I’m not so sure how to easily get the name of the file I
want to
parse.
Any suggestions? Thanks! – BTR