Help for this page

Select Code to Download


  1. or download this
    $foundit = 0;
    while (<$FH>) {
    ...
    if ($foundit) {
        do some processing
    }
    
  2. or download this
    open FH,"file" or die "Can't open file : $!\n";
    $count1 = 0;
    ...
           do some processing
       }
    }