From c2010f5eba9c32dfe752af5aea0e428f1ff9110a Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Sun, 15 Mar 2020 14:18:34 +0000 Subject: [PATCH] Tweak formatting & wording of `libreoffice` --- sheets/libreoffice | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sheets/libreoffice b/sheets/libreoffice index 1adf892..28e1a70 100644 --- a/sheets/libreoffice +++ b/sheets/libreoffice @@ -1,9 +1,11 @@ -# Convert documents to PDF +# libreoffice +# Office productivity suite + +# Convert documents to PDF. libreoffice --headless --convert-to pdf *.pptx -# Save them to a different directory? +# Save PDFs to a different directory? libreoffice --headless --convert-to pdf *.docx --outdir ~/docs/ -# Convert files nested inside folders? -# This uses sharkdp/fd, you could use GNU find, xargs etc. +# Convert files nested inside folders? Uses sharkdp/fd, IE: find(1) & xargs(1). fd -e doc -e docx -x libreoffice --headless --convert-to pdf --outdir {//} {}