7

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

studiohack
  • 13,477
z12345
  • 203

1 Answers1

3

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

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