Jason wrote:
: while (<NAMES>) {# read the names into a hash
: $names{$_} = 1;
: }
Maybe do a chomp() in here?
while (<NAMES>) {
chomp;
$names{$_} = 1;
}
Otherwise, it might be trying to match the newline
(which Perl retains).
-- tdk
- passing array values into a command string Jason Cruces
- RE: passing array values into a command string Timothy Kimball
- RE: passing array values into a command string Wagner-David
- RE: passing array values into a command string Jeff Pinyan
- RE: passing array values into a command string Wagner-David
