8

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.

user471011
  • 3,569
  • 8
  • 25
  • 19

1 Answers1

12

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

apt-get install libxml2-utils
danorton
  • 232