Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Scripting >> Perl >> How to scan a directory and search for files containing a specific string

following example scans the /apache/htdocs directory and searches each file for the pattern "<A HREF=". Only matching files will be displayed. #!perl # example $htmlroot = "/apache/htdocs"; $dirname = $htmlroot; #$dirname = "..\/htdocs"; #chdir("/apache/cgi-bin/"); opendir(DIR,$dirname); @files = grep{!/^\./} readdir(DIR);# remove the dots closedir(DIR); chdir("$dirname"); foreach $file (@files) { @fileinfo = stat($file); $modify_time = localtime($fileinfo[9]); $pattern="<A HREF="; open(inhandle, "$file"); while (<inhandle>) { if ( (/$pattern/gi) ) { chomp; print "[$dirname\/$file] $_\n"; print "----------------------------------------\n"; } } close(inhandle); }
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]