Created
September 13, 2015 12:48
-
-
Save jpallari/d400ef27d9cc755e82c9 to your computer and use it in GitHub Desktop.
Batch convert OpenDocument spreadsheets to CSV using LibreOffice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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