printing command line arguments

This commit is contained in:
Dan Buch 2011-01-05 21:08:08 -05:00
parent 8e16c41973
commit afe4b10808

10
cli/argv.pl Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env perl
use strict;
use warnings;
foreach my $a (@ARGV) {
printf("$a\n");
}
1;
__END__