Help for this page
for my $file (qw(files.txt data.txt)) { unlink($file) or $!{ENOENT} or die("Unable to unlink '$file': $!"); }
my $success = 1; for my $file (qw(files.txt data.txt)) { ... } die("Unable to cleanup") if !$success;