I have a file with bulk of data. I need to search for specific pattern, e.g. the below shot shows
a part from the file that contains the words am searching for:
POST Data (example.com): item=car&price=12345&
grep -i "&price="
return the lines that contains "&price="
I don't have much experience in this, but what I am trying to do is to look for the lines that
contain item and price words, and displays the following:
item=car
price=12345

Help













