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.
ソースツリー上でhunspellを実行しようとしています。しかし、私がこれを実行すると:
find . -name *.html | xargs hunspell -H
Hunspellエディターが画面に表示されますが、入力された入力は受け入れられません。Ctrl+ Cを入力してhunspellエディターを終了すると、次のコマンドプロンプトにすべての入力が表示されます。ファイルをhunspellにパイプする方法はありますか?
ありがとう、ケビン
これは、nosidによる回答に基づいてい ます。
xargs -a <(find . -name *.html) hunspell -H
説明については、 nosidの回答を参照してください(: