- or download this
my $file=<>;
- or download this
my $file = shift @ARGV; # get first argument
my $nfile = shift @ARGV; # get next argument
- or download this
my $file = shift;
my $nfile = shift;
- or download this
my ($file,$nfile) = @ARGV;
- or download this
open FILE,">$file" or die "Can't open $file: $!"