Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xml_grep get attribute from element

Is it possible (and if so, how) with xml_grep to get the value of a specific attribute from a specific element? I only seem to be able to output the information between tags.

example:

    <eid>
       <identity nationalnumber="13021912354" dateofbirth="20130219" gender="male">
          <name>Menten</name>
          <firstname>Kasper</firstname>
          <middlenames>Marie J</middlenames>
          <nationality>Belg</nationality>
          <placeofbirth>Sint-Truiden</placeofbirth>
          <photo>base64-string</photo>
       </identity>
    </eid>

output the value (in this case: 13021912354) of the 'nationalnumber'-attribute from the 'identity'-element

like image 741
sarkasper Avatar asked Feb 19 '13 13:02

sarkasper


1 Answers

With xmllint :

xmllint --xpath 'string(//identity/@nationalnumber)' file.xml

For debian distro (or derivatives) xmllint is part of the libxml2-utils package and can be installed so:

apt-get install libxml2-utils

like image 144
Gilles Quenot Avatar answered Oct 28 '22 20:10

Gilles Quenot