About 50 results
Open links in new tab
  1. PDF to word conversion software? - Ask Ubuntu

    Apr 28, 2011 · I prefer converting PDF files first to HTML using pdftohtml included in the poppler-utils package, for example by means of a file manager context menu script merely consisting of this …

  2. Convert PDF to Word Using Libreoffice in terminal - Ask Ubuntu

    Jul 16, 2020 · 10 I am using the following libreoffice command to convert my pdf files into word (doc) lowriter --headless --infilter='writer_pdf_import' --convert-to doc:"MS Word 2007 XML" sample.pdf …

  3. How can I convert an ODT file to a PDF? - Ask Ubuntu

    Sep 10, 2011 · Here are a few more details about the "non-GUI" method. You can use this method not only to convert ODT files to PDF. It will also work for MS Word DOCX files (it will work as well as …

  4. How to batch convert .doc or .docx to .pdf - Ask Ubuntu

    Oct 17, 2018 · I need to batch convert a set of .doc or .docx files to .pdf in terminal, not using a GUI. It would be helpful if I could batch-process multiple files. I would also like to maintain as much meta...

  5. Getting the word count of a pdf document in Evince - Ask Ubuntu

    Nov 8, 2010 · 35 Is there any way I can get the word count of a PDF document that I'm viewing in Evince, Ubuntu's default pdf viewer? I'm able to convert the documents to text files and get the word …

  6. software recommendation - Convert docx to PDF - Ask Ubuntu

    I am trying to convert docx files to pdf on my Ubuntu server using the command line but none of converters I tried so far seems to convert Word 2007/2010/2013 files correctly. Appearently online

  7. opening doc and pdf files in terminal linux - Ask Ubuntu

    May 21, 2019 · fbpdf – a small framebuffer pdf, djvu, epub, xps, and cbz viewer jfbview – PDF and image viewer for the Linux framebuffer In the case of .doc files I would convert them to plain text, e.g. …

  8. Search text within multiple pdfs and docs - Ask Ubuntu

    Dec 21, 2014 · You need to set Where would you like to search? to All PDF Documents in and then select location from drop-down menu (Browse for Location). You can enter search item to the What …

  9. How to Edit PDFs? - Ask Ubuntu

    Jul 10, 2012 · I typically have two needs: Scenario A. Change a single PDF page. In this case I have a PDF but not the original source file used to create the PDF. I don't want to try to recreate the …

  10. How to open a PDF file from terminal? - Ask Ubuntu

    May 17, 2011 · 1 I personally use a shell script: $ cat pdf #! /bin/bash gnome-open ${1:-*.pdf} When you call pdf it will open all pdfs in the current directory, specify which pdf by supplying an argument. I …