Skip to content

Instantly share code, notes, and snippets.

@thbar
Forked from diogo-almeida/docx2pdf
Last active August 29, 2015 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thbar/55d193cac39b8a2cd9d2 to your computer and use it in GitHub Desktop.
Save thbar/55d193cac39b8a2cd9d2 to your computer and use it in GitHub Desktop.
# Path of LibreOffice installation
cd /Applications/LibreOffice.app/Contents/MacOS
# General command
./soffice --headless --convert-to <extention> <path+file>
# Automatically convert all .odt files to pdf
./soffice --headless --convert-to pdf ~/Downloads/*.odt
# To specify an output folder you can add the --outdir option
./soffice --headless --convert-to pdf --outdir /home/user ~/Downloads/*.odt
# Options
./soffice --help
# found at: http://ask.libreoffice.org/en/question/12084/how-to-convert-documents-to-pdf-on-osx/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment