Help for this page

Select Code to Download


  1. or download this
    my @list = (@values, <$filehandle>);
    while( my $line = shift @list) {
    ...
       my $another_line = shift @list;
    }
    
  2. or download this
    my $file_line = splice @list, scalar @values + $line_num,1;