Hello,
I have an xml file which has many lines like this :
Code:
myFileCode="null#9"
myFileTimeCode="null#123"
myFileMachineCode="null#145"
I want to list all the lines which has above string.
I tried the following with no result :
Code:
grep "MyFileCode="null#9"" myfile.xml
grep "MyFileCode='"'null#9'"' myfile.xml
How do I solve this seemingly easy problem?
Thanks in advance.