Celeb Glow
updates | March 29, 2026

Mass convert Word & PPT to PDF software [duplicate]

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.

4

2 Answers

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

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