Revision [633]
This is an old revision of CommandCsv2xml made by DavidLee on 2009-06-20 10:16:57.
Command csv2xml
Name
csv2xml converts a csv file to an xml fileSynopsis
csv2xml [options] [csvfile]Options
-root rootname use "rootname" as the root element name, default "root"-row rowname use "rowname" as each row's element name, default "row"
-col colname use "colname" as each column's element name (or for attribute normal format, the attribute prefix)
-delim delimchar deliminate columns with delimchar, default ","
-quote quotechar quote with quote character, default "
-encoding encoding read csv file in encoding (default "cp1252")
-header read 1 row from the csv file and use as column names (element or attribute)
-attr Output in attribute normal format (each column is an attribute), default row normal format
csvfile Name of the csv file to convert, otherwise stdin. Default "-" (stdin)
Example
$ echo foo,bar | csv2xml <root> <row> <col>foo</col> <col>bar</col> </row> </root>
Return Value
Returns 0 if the conversion is successfulCategoryCommands