- or download this
#!/usr/local/bin/perl -w
# use strict;
# use warnings;
- or download this
#!/usr/local/bin/perl
use strict;
use warnings;
- or download this
if($#ARGV != 1)
- or download this
if(@ARGV != 2)
- or download this
chomp(@ARGV);
- or download this
$dirname =~ s/\/$//g;
$output =~ s/\/$//g;
- or download this
mkdir $output if (-d $output ==0);
- or download this
mkdir $output or die "mkdir $output: $!" unless -d $output;