Xargs
如何在帶有 xargs 的文件列表上執行 hunspell?
當我跑
find . -name "*.html" | xargs hunspell
hunspell 顯示第一個有拼寫錯誤的文件,但不接受輸入。我必須按 ctrl-c 才能殺死它。這是什麼原因造成的?
有沒有辦法在目錄樹中的文件列表中執行 hunspell?
試試這個:
find . -name "*.html" -exec hunspell '{}' \;