I am grepping an XML File, which gives me output like this:
data more data ...
Note, this is a fl
If your file looks just like that, then sed can help you:
sed
sed -e 's/<[^>]*>//g' file.xml
Of course you should not use regular expressions for parsing XML because it's hard.