Help for this page

Select Code to Download


  1. or download this
    $words = "\b(directory|file|age|action)\b";
    # A little more Perl-ish:
    while (<>)
    {
        print "Couldn't find $_\n" unless /$words/;
    }