hey all,
I want to remove the below line from the resulting text...
i used
But dint work..
Please help me..
I want to remove the below line from the resulting text...
Code:
(.*)$/',$lines,$matches))10.(.*)$/',$lines,$matches))(.*)$/',$lines,$matches))
Code:
perl -pi -e 's/\(.*\)\$/',\$lines,\$matches\)\)10.\(.*\)\$/',\$lines,\$matches\)\)\(.*\)\$/',\$lines,\$matches\)\) / /gi' result.txt > result1.txt
Please help me..
Comment