Batch convert multiple documents matching a glob pattern.
1. Usage
uniword batch PATTERN OUTPUT_DIR
2. Options
--format, -f
-
Output format (docx or mhtml). Default: docx.
--verbose, -v
-
Show progress for each file.
3. Examples
Convert all HTML files in a directory to DOCX:
uniword batch "docs/*.html" output/
Convert all DOCX files to MHTML:
uniword batch "reports/*.docx" exports/ --format mhtml
Verbose output to see each file processed:
uniword batch "*.mhtml" converted/ --format docx --verbose