Trouble searching through hidden subdirectories #1784
-
Why doesn't this command not find the file
Results don't include hidden subdir
|
Beta Was this translation helpful? Give feedback.
Answered by
BurntSushi
Jan 14, 2021
Replies: 1 comment 5 replies
-
Because of your |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
BurntSushi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because of your
.*
glob. That will expand to any file or directory in the current working directory that starts with a.
..github
starts with a dot, butrepo
does not, so repo is never searched.