I have File which contains Records
qwe.google.com IN A 1.1.1.1
qwe.google.com IN {uneven-space} A{space}1.1.1.1
qwe.google.com IN CNAME asd.google.com
I need to grep all the lines which contains IN A
, as it contains uneven spaces in between i am not able to do so.
IN A
appear anywhere except exactly where you want to match on if? For example could a string containingIN A
likeTIN APPLES
appear in your input? – Ed Morton Jun 11 '20 at 03:12