Searching multiple strings in multiple files in a directory
I have a list of strings in a file separated by a new line.for example:
input.txt
temp1 temp2 temp3Now I have a directory with multiple dat files like:
>ls -1 *.dat one.dat two.dat three.datAnd many more dat like like above with random names. Now I want to search for all the strings in input.txt in all the dat files present in directory(let's say current working directory).This is what I came up with:
create a perl script given below and name it as anything you wish(I named here as temp.pl).place the file input.txt in the current working directory.
#!/usr/bin/perl -w
open (INP,"input.txt") or die $!;
while(<INP>)
{
my $cmd="find . -name \"*.dat\"|xargs grep -w -i $_";
my $output=`$cmd`;
if($output!~/^\s*$/)
{
print $_."\n";
print "------------------\n";
print $output."\n";
print "-------------------\n";
}
}
exit;
Run this script as :
>./temp.plThis solved my need.I hope it solves yours too :)
.png)







I am a software programmer working in India. I usually like to blog in my free time.
2 comments: