Help for this page

Select Code to Download


  1. or download this
    while ($line = <>) {
      # redo comes HERE
      # do something
    ...
        redo;
      }
    }
    
  2. or download this
    while ($line = <>) {
      # ...
      my $pos = tell ARGV;
    ...
      seek ARGV, $pos, 0;
      # ...
    }