- or download this
do { print "$_ could not be restored!\n" unless ( exists $found{$_} )
+} foreach (@files);
- or download this
foreach (@files) {
print "$_ could not be restored!\n" unless ( exists $found{$_} );
}
- or download this
exists $found{$_} or print "$_ could not be restored!\n" foreach @file
+s;