Help for this page
open (FILE, "$file") || die "Can't open $file"; $tmp=<FILE>; ... push(@hashkeys, $_); }
my @hashkeys; open (FILE, "$file") || die "Can't open $file"; ... push(@hashkeys, $fields[0]); # or perhaps it's some ot +her # field you want? }