I have a flat file log.txt and I want to print lines where a match occurs. I can use grep like this
grep "hello" log.txt >> store.txt
But I want to do it in perl without using any external libraries.
I want to print the entire line where the match occurs. For example, if log.txt contains
a=12
b=4
c=4
hello-there=8
then output should be
hello-there=8
when searching for "hello".
I am storing log.txt into an array. I need to find the index of the match.
catthere is a waste. You could have used<log.txt grep "hello" >>store.txt– ikegami Dec 12 '12 at 19:48