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
  • 10

1 Answers1

2

Try this:

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

jscott
  • 24,484
  • 8
  • 79
  • 100
johnshen64
  • 5,865
  • 24
  • 17