Batch convert Microsoft Word files to HTML files

6

1

How can Microsoft Word files (.doc, .docx) be converted to HTML files as a batch process running on a Linux server?

z12345

Posted 2011-05-13T08:47:14.440

Reputation: 163

1Can you use OpenOffice on that server? – slhck – 2011-05-13T08:55:23.340

@slhck: Yes I can. – z12345 – 2011-05-13T13:51:39.770

Answers

2

Install unoconv and put together a script, e.g:

for f in *.doc
do
    unoconv -f html $f
done

ʍǝɥʇɐɯ

Posted 2011-05-13T08:47:14.440

Reputation: 670