Revision [435]
This is an old revision of CommandXml2csv made by DavidLee on 2009-04-03 16:02:26.
Command xml2csv
Name
xml2csv converts an xml file to a csvl fileSynopsis
xml2csv [-header] [-attr] [xmlfile]Description
-header Emit a header CSV record-attr Use attributes instead of elements for field data
xmlfile Name of the xml file to convert, otherwise stdin. Default "-" (stdin)
Example
$ xml2csv <<EOF <root> <row> <col>foo</col> <col>bar</col> </row> </root> EOF
Result
foo,bar
Return Value
Returns 0 if the conversion is successfulCategoryCommands