Getopt::Long is a command line switch parsing library for Perl. For C-programming: The getopt and getopt_long functions automate some of the chores involved in parsing typical unix command line options.
The Getopt::Long Perl module is a parser for the POSIX command line switch syntax with GNU extensions. Both the traditional -s
single character switches and the longer --longer
switches are supported.
For C-programming: The getopt
and getopt_long
functions automate some of the chores involved in parsing typical unix command line options. For details, please see here.