Help for this page

Select Code to Download


  1. or download this
    grep "Joe's Store" your_filename | wc
    
  2. or download this
    while($line=<>) {
      chomp $line;
      $a++ if($line =~ /Joe's Store/);
    }
    print "Joe's Store occured $a times\n";