Convert any doc to pdf without installing LibreOffice and its dependencies
- Doesn't clutter your system with shit-ton of LibreOffice dependencies!
- UNIX way - feed in
stdinand get fromstdout - So no docker volumes mounting needed
--rmarg ensures container is removed after converting. Doesn't clutter your Docker- Easy removing:
docker rmi vladgolubev/libreoffice-pdf-cli && rm ~/bin/topdf
This will just create a convenient shorthand command:
$ echo "docker run --rm -i vladgolubev/libreoffice-pdf-cli" > ~/bin/topdf && chmod +x ~/bin/topdf$ cat Document.docx | topdf > Document.pdfOptionally, if you have pdftk installed, you can for example cut 1st page:
$ cat Document.docx | topdf | pdftk cat 1 > Document.pdf