Help for this page

Select Code to Download


  1. or download this
    sub search {
    
        my ($file, $searchString) = @_;
    ...
    
        return 0;
    }
    
  2. or download this
    if(search($file, $searchString)) { 
    
        print "\tFound: $file\n";
    ...
            }
        }
    }