Help for this page

Select Code to Download


  1. or download this
    foreach i ('ls -d APPL_RMKS_RCV* ')
       grep -v 'NOT|INVALID|MUST|ERROR' $i | grep - >> ${good_ones}
       grep 'NOT|INVALID|MUST|ERROR' $i | grep - >> ${bad_ones}
    end
    
  2. or download this
    foreach $file(@file){
    open(MYFILE, $file[$i]) or die qq(Cannot open $file[$i]\n);
    ...
        }    
        $i++;
    }