in reply to perl script to print xml data like this

As I wrote earlier, I usually use XML::XSH2 to handle XML. To get the desired output, the following lines are enough:
open EEC3_DTC_Specification_03.20.00_formal.xml; for //DTC/TroubleCode { echo :s 'trouble code: ' text() {"\n"} description: ; ls .. ; }

Replies are listed 'Best First'.
Re^2: perl script to print xml data like this
by veerubiji (Sexton) on Oct 04, 2011 at 09:28 UTC

    Hi choroba, thaks for your reply and I will try like your suggestion, because i dnt know that much about XML::XSH2.