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
Passing -e mishandles a filename, if present, treating it as the pattern. lgrep -e Cli src/*.rs and lgrep Cli src/*.rsshould be equivalent, but lgrep considers the first (globbed) filename to be a pattern. If a single filename is specified (or the glob only matches one) like lgrep -e Cli src/lib.rs, the filename is considered a pattern, and waits to filter STDIN.
The text was updated successfully, but these errors were encountered:
Passing
-e
mishandles a filename, if present, treating it as the pattern.lgrep -e Cli src/*.rs
andlgrep Cli src/*.rs
should be equivalent, butlgrep
considers the first (globbed) filename to be a pattern. If a single filename is specified (or the glob only matches one) likelgrep -e Cli src/lib.rs
, the filename is considered a pattern, and waits to filter STDIN.The text was updated successfully, but these errors were encountered: