- or download this
perl report.pl -CustomerName "Penelope NY" > test.txt
- or download this
perl report.pl --CustomerName "Penelope NY" > test.txt
- or download this
use strict;
use Getopt::Long;
...
for my $customer (@customer) {
print "Hello $customer!\n";
};