#!usr/bin/perl
#script: patternsearch.pl : Program to search for specific pattern inside the file.
print ("Prgramme name: $0 \n");
print ("Enter pattern: \n");
chop ($pattern = <STDIN>);
print ("Enter the absolute folder path: \n");
chop ($folder = <STDIN>);
print ("Enter file type: \n");
chop ($filetype = <STDIN>);
die ("pattern not entered??? \n") if ($pattern eq " ");
if ($filetype eq "txt") {
foreach $search (`find $folder -type f -name "*.$filetype"`) {
do `grep -H $pattern $search>> patternsearch.txt`;
}
}
else {
foreach $search (`find $folder -type f -name "*.$filetype"`) {
do `antiword $search | grep -H $pattern >> patternsearch.txt`;
}
}
print ("Taskcompleted \n");
|
|
||||
|
|
|||
|
|
|
You really should
at the start of every program, and declare all you variables with You ought to use The only problems I can find is that you don't If you have any further problems, please explain what output you expect, and what you are getting. |
|||
|
|
do `grep -H $pattern $search>> patternsearch.txt`;. You don't needdohere. Replace it with just backtick operator:`grep -H $pattern $search>> patternsearch.txt`and see if the problem disappears. Exact error message would be helpful though. – mcsi Mar 23 '12 at 12:32