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.
我有大约 1800 个 PDF 文件,我必须从中提取 Flesch-Kincaid 年级分数。有人对我应该如何最好地解决这个问题有任何想法吗?我需要每个 PDF 的分数。
如果肉体.exe 采用文件名并将结果输出到标准输出,那么这应该在每个 PDF 文件上运行它。
@echo off for %%a in (*.pdf) do ( flesh.exe "%%a" >> file.log )