5

Is there any software to convert Microsoft Word and Powerpoint files to PDF documents in a batch without having to open each one individually? Either a graphical or terminal method will be suitable.

Ashu
  • 9,642

2 Answers2

8

To mass convert .doc and .ppt to .pdf, you can use unoconv.

To install:

sudo apt-get install unoconv

To convert the files you can use the following commands:

unoconv -f pdf filename.doc
unoconv -f pdf filename.ppt
unoconv -f pdf *.doc
unoconv -f pdf *.ppt
green
  • 14,406
3

In open office there is a option File->Export as PDF .

Jay
  • 2,370