You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a long list of files (newline or \0 separated) to run through typos, and I don't see a good way to pass them other than a bash loop executing typos one by one (which is a waste of time).
Passing like:
typos $files
have issues around globbing and command line argument limit, and can't handle \0.
Would be nice is if I could:
echo"$files"| typos --stdin-paths # for newline separated pathsecho"$files0"| typos --stdin-paths0 # for zero-separated paths