diff options
author | Saumit Dinesan <79687674+Saumit-D@users.noreply.github.com> | 2021-11-22 20:52:27 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 20:52:27 +0530 |
commit | 9de98945790304751c65f58dcd8dbfa69fa40e77 (patch) | |
tree | 27231e44c9d8242f1fb05deb208cee1db71130ac /scripts/pdfconv | |
parent | eecf1de4d5434e9c38a78d6a5b6d76c5ba39aa78 (diff) |
Update pdfconv
Diffstat (limited to 'scripts/pdfconv')
-rw-r--r-- | scripts/pdfconv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/pdfconv b/scripts/pdfconv index f31c9e8..5a723d7 100644 --- a/scripts/pdfconv +++ b/scripts/pdfconv @@ -1 +1,3 @@ -find . -type f -iname "*.docx" -exec soffice --headless --convert-to pdf {} + +#!/bin/sh +find . -type f -iname "*.*" -exec soffice --headless --convert-to pdf {} + && +pdfunite *.pdf output.pdf |