Perl CLI Input Processor

From GM-RKB
Revision as of 19:28, 6 November 2021 by Gmelli (talk | contribs) (Text replacement - " a [[" to " a [[")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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,
) ;