What XPath expression is needed to use xml starlet select command to get all the XML nodes in the file with name X?
EDIT:
Using this xml
<Parent>
<Children>
<Child>
<Size width="100" height="100"/>
</Child>
<Child>
<Size width="200" height="200"/>
</Child>
</Children>
</Parent>
When I run this command nothing is output to the console. I am running version 1.6.1
C:[path_to_xml]>xml sel -t -v "//Size" test.xml
C:[path_to_xml]>