11 lines
140 B
Perl
Executable File
11 lines
140 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Text::CSV qw( csv );
|
|
|
|
my $filename = $ARGV[0] or die "Parameter missing";
|
|
|
|
print $filename;
|