bash-tutorial/tutorial/convertppt2pdf.org

17 lines
376 B
Org Mode
Raw Normal View History

2022-07-03 21:06:29 +02:00
* How to convert office documents to text
You may use libreoffice from terminal to tranform the file in pdf:
#+begin_example sh
libreoffice --headless --convert-to pdf Presentation.pptx
#+end_example
Then you can use 'pdftotext' command to transform the pdf file to any plain text
format:
#+begin_example sh
pdftotext Presentation.pdf Presentation.txt
#+end_example