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?

Don Branson
  • 207
  • 1
  • 9

1 Answers1

2

Try this:

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

jscott
  • 24,204
  • 8
  • 77
  • 99
johnshen64
  • 5,747
  • 23
  • 17