I am parsing command line options in Perl using Getopt::Long. I am forced to use prefix -
(one dash) for short commands (-s
) and --
(double dash) for long commands (e.g., --input=file
).
My problem is that there is one special option (-r=<pattern>
) so it is long option for its requirement for argument, but it has to have one dash (-
) prefix not double dash (--
) like other long options. Is possible to setup Getopt::Long to accept these?