Skip to content

Instantly share code, notes, and snippets.

@gberger
Created June 14, 2014 20:53
Show Gist options
  • Save gberger/b0eb143d41a0b57070a2 to your computer and use it in GitHub Desktop.
Save gberger/b0eb143d41a0b57070a2 to your computer and use it in GitHub Desktop.
Batch convert DOC to PDF
#!/usr/bin/env bash
# Requires LibreOffice
# Use `find` if you need something more advanced
files=`echo *.doc`
for file in $files; do lowriter --convert-to pdf:writer_pdf_Export $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment