in reply to grep exact words
my %seen = map { $_ => 1 } @serv; foreach $ARGV (@ARGV) { if (!$seen{$ARGV}) { warn "$ARGV not found\n" next; } # Whatever you want to do when found }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: grep exact words
by Anonymous Monk on Jun 26, 2004 at 13:36 UTC | |
by Roy Johnson (Monsignor) on Jun 26, 2004 at 17:24 UTC |