Help for this page

Select Code to Download


  1. or download this
        while ($_ = $opts{-handle}->getline()) {
            print;
        }
    
  2. or download this
        while (my $line = $opts{-handle}->getline()) {
            print $line;
        }