|
Need to list pattern only not containing whole line
I am searching a pattern item_id>000111111</item_id> in an XML file.
More than one occurance are there for this patter in a single line.
I have tried
awk '/item_id/,/item_id/' tpnb1.txt>abc.txt
Full lines containg pattern are coming.
I need only list of 000111111.
|