Skip to content

Instantly share code, notes, and snippets.

@jpallari
Created September 13, 2015 12:48
Show Gist options
  • Save jpallari/d400ef27d9cc755e82c9 to your computer and use it in GitHub Desktop.
Save jpallari/d400ef27d9cc755e82c9 to your computer and use it in GitHub Desktop.
Batch convert OpenDocument spreadsheets to CSV using LibreOffice
#!/bin/sh -e
LO_PROFILE_DIR="/tmp/LO_conversions"
libreoffice \
"-env:UserInstallation=file://$LO_PROFILE_DIR" \
--headless --invisible \
--convert-to csv *.ods \
--outdir csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment