How to Pretty Print XML from the Command-line
Here is a nice article How to pretty print XML from the command line? that shows a lot of ways to do that, but I really like the one with Python, as it totally solves a problem I was having.
cat SomeXmlDataFileToPrint.xml | python -c 'import sys;import xml.dom …