I want to run Hunspell in all subdirectories and check all the markdown files in there.
Easy right?
So I wrote: find ./ -type f -exec hunspell -l *.md {} \;
When I run this command it shows much more than only the three test markdown files. What is wrong with this command?
PS:
-l
means that Hunspell will only output the words that have a spelling error.