Feature Request: Read from stdin #4900
Closed
kevintraver
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
I think this has existed for awhile #37, unless it got removed |
Beta Was this translation helpful? Give feedback.
0 replies
-
It will already read The simplest is:
It is possible to be more sophisticated.
This tells cspell to treat |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be helpful to have an option for
cspell-cli
to read from stdin (instead of writing to a file, and then having cspell read that text file)An example use case would be if you have a list of files/directories you want to check against your dictionary, you could do something like this:
ls | tr '.' ' ' | xargs -n1 echo | sort | uniq | cspell
Beta Was this translation helpful? Give feedback.
All reactions