Help for this page
foreach my $item(@array) { next unless ($item =~ "good stuff"); }
map { die "Bogus" unless m["good stuff"]; #DO STUFF } @array
map { next "Bogus" unless m["good stuff"]; #DO STUFF } @array