- or download this
open IN, '<', 'clients.txt' or die "Can't open file 'clients.txt': $!"
+;
@clients = <IN>;
chomp @clients;
- or download this
open IN, '<', 'subdirectories.txt' or die "Can't open file 'subdirecto
+ries.txt': $!";
@subdirs = <IN>;
chomp @subdirs;
- or download this
my $year = 2005;
mkdir $year, 0755;
...
or die "Can't create directory '$year/$range/$client/$subdir
+': $!";
}
}