Ubuntu – Ubuntu Saucy: What is the default console tool for parsing XML

13.10aptpackage-managementxml

I used xmllint package for parsing xml files. Also, I know, that we can use xml2, xmlstarlet too.

But I do not see those packages in Ubuntu Saucy.

Does Saucy contain any default xml parsers?

I need parse xml file one time and I do no want install addition packages for this.

Best Answer

I don't know of a "default", but xmllint is included with the libxml2-utils package.

apt-get install libxml2-utils
Related Question