Perl CLI Input Processor

From GM-RKB
(Redirected from Perl Command Line Processor)
Jump to navigation Jump to search

A Perl CLI Input Processor is a Command Line Processor to a Perl program.



References

2013

use Getopt::Long ;
die "ERROR in parameter processing.\n" if not GetOptions (
   'inFile:s'   => \$inFile,
   'outFile:s'  => \$outFile,
...
   'help'        => \$help,
) ;