Case-Insensitive Search? #867
-
Is there a way to make your search pattern case-insensitive? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
gierens
May 23, 2024
Replies: 2 comments
-
Can you elaborate what you mean by search pattern? In case you mean glob patterns this has nothing to do with eza and more with your shell: ZSH:
BASH: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bcrotty
-
That's helpful. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you elaborate what you mean by search pattern?
In case you mean glob patterns this has nothing to do with eza and more with your shell:
ZSH:
CASE_GLOB
:extendedglob
and make use of the(#i)
to mark a glob as case-insensitive:BASH:
Here you can set
nocaseglob
: