Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将.docx文件夹中的所有文件转换为.txt文件。
.docx
.txt
我使用文本实用程序。
textutil -convert txt filepath/*.docx
我试过这个并得到一个“参数列表太长”的错误。
你可以用find -exec这个:
find -exec
find filepath \ -maxdepth 1 \ -type f \ -name '*.docx' \ -exec textutil -convert txt {} +
*.docx这将查找以给定目录结尾的所有文件,并textutil尽可能少地运行该命令,而不会遇到“参数列表太长”错误。
*.docx
textutil