Hi!

Is there a better way?  A Perl way?

  $j = 0;
  while( <file> ) {
    chomp;
    ( $lots[ $j++ ] ) = $_;
  }

?  @lots = <file>;

Thanks,

Jerry

Reply via email to