- or download this
foreach(@array){
my $item = $_;
...
- or download this
foreach(@attchfiles) {
my $attchfilename = $_;
$attchfilename =~ tr/A-Z/a-z/;
rename($_, $attchfilename);
}
- or download this
rename($_,lc) for @attchfiles;
- or download this
for(@attchfiles){
if ( -e lc ) {
...
rename $_,lc;
}
}