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.
Flesch-Kincaid の学年レベルのスコアを抽出する必要がある約 1800 の PDF ファイルがあります。これにどのようにアプローチするのが最善かについて、誰かアイデアはありますか? PDF ごとのスコアが必要です。
fresh.exe がファイル名を取り、結果を stdout に出力する場合、これはすべての PDF ファイルで実行されます。
@echo off for %%a in (*.pdf) do ( flesh.exe "%%a" >> file.log )