ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# 一、libreoffice 示例:doc转换docx ```bash $ libreoffice --invisible --convert-to docx tests.doc ``` 支持批量 ```bash $ libreoffice --invisible --convert-to docx *.doc ``` 转换结果输出到其他目录,输出到`tmp/`目录 ```bash $ libreoffice --invisible --convert-to docx --outdir tmp/ *.doc ```