Perl: Simple way to read Command line arguments
Parsing command-line arguments in Perl is very easy.
All the command-line arguments are present in the array $ARGV. You can get the number of arguments passed as ( $#ARGV + 1 ).
Below is a sample Perl script to read the command-line parameters.Read More »Perl: Simple way to read Command line arguments