Help for this page

Select Code to Download


  1. or download this
    my $found=0;
    while(<USERPREF>) {
    ...
       print "not found $_ \n";
       #write
    }
    
  2. or download this
    while (<$fh>) {
      chomp;
    ...
            print OUTFILE $_;
        }
    }