Updating README and poppler tutorial

This commit is contained in:
Jose 2022-09-02 17:58:30 -03:00
parent 76218c5af4
commit 65cb2b29f1
2 changed files with 11 additions and 12 deletions

View File

@ -22,7 +22,7 @@ opportunity to learn about computers, files, directories and programs.
** Users
* [[./tutorial/add_user.org][How to add users]]
* [[./tutorial/changeowner.org][Changing file permissions: 'chmod']]
* [[./tutorial/changeowner.org][Changing file permissions: 'chmod' and 'chown']]
** File manipulation
@ -36,7 +36,7 @@ opportunity to learn about computers, files, directories and programs.
** File conversion
* [[./tutorial/convertppt2pdf.org][Convert office files to pdf]]
* [[./tutorial/poppler.org][Convert markup text to multiple formats using 'pandoc']]
* [[./tutorial/pandoc.org.org][Convert markup text to multiple formats using 'pandoc']]
* [[./tutorial/poppler.org][Convert pdf to text or html using 'poppler']]
* [[./tutorial/video_convert.org][Convert videos]]

View File

@ -5,24 +5,23 @@
Use poppler and redirect the text to a org file. ~pdftotext~ converts a pdf to
"txt" if no other format is specified
#+begin_src bash
#+begin_example bash
pdftotext foo.pdf foo
#+end_src
#+end_example
Install poppler in Parabola GNU-Linux
#+begin_src bash
#+begin_example bash
pacman -S poppler
#+end_src
#+end_example
#+begin_src bash
#+begin_example bash
pdftotext foo.pdf ->> foo.org # first option
pdftotext foo.pdf foo.org # second option
#+end_src
#+end_example
Convert pdf to html
#+begin_src bash
pfdftohtml foo.pdf foo.html
#+end_src
#+begin_example bash
pfdftohtml foo.pdf foo.html
#+end_example