I have a text file that\'s about 300KB in size. I want to remove all lines from this file that begin with the letter \"P\". This is what I\'ve been using:
&g
This works:
cat file.txt | egrep -v -e '^P'
-e indicates expression.
-e