How can Microsoft Word files (.doc, .docx) be converted to HTML files as a batch process running on a Linux server?
Asked
Active
Viewed 1,572 times
7
studiohack
- 13,477
z12345
- 203
1 Answers
3
Install unoconv and put together a script, e.g:
for f in *.doc
do
unoconv -f html $f
done
ʍǝɥʇɐɯ
- 694