Batch convert Microsoft Word files to HTML files

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

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