Skip to content

Instantly share code, notes, and snippets.

@ikks
Created November 1, 2014 23:45
Show Gist options
  • Save ikks/2fd23c9241a6b768da56 to your computer and use it in GitHub Desktop.
Save ikks/2fd23c9241a6b768da56 to your computer and use it in GitHub Desktop.
Converts an xls xml table to csv. Usually those files are in iso-88859-1 in a one long line, with this you can convert them to a psv. Requires iconv and sed
iconv -f iso-8859-1 -t utf-8 INPUTFILE | sed 's%^.*<table>%%g;s%</table>%%g;s% x:str%%g' | sed 's%<tr><td>%%g;s%</td><td>%|%g;s%</td></tr>%\n%g' > OUTPUTFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment