mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
commit
285754c651
9
sheets/libreoffice
Normal file
9
sheets/libreoffice
Normal file
@ -0,0 +1,9 @@
|
||||
# Convert documents to PDF
|
||||
libreoffice --headless --convert-to pdf *.pptx
|
||||
|
||||
# Save them 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.
|
||||
fd -e doc -e docx -x libreoffice --headless --convert-to pdf --outdir {//} {}
|
Loading…
Reference in New Issue
Block a user