1

When I run

find . -name "*.html" | xargs hunspell

hunspell displays the first file with an spelling error, but won't accept input. I have to ctrl-c to kill it. What causes this?

Is there a way to run hunspell across a list of files in a directory tree?

1 Answers1

2

Try this:

find . -name "*.html" -exec hunspell '{}' \;

jscott
  • 25,114
johnshen64
  • 6,035