vote up 3 vote down star
1

I need to list all files whose names start with 'SomeLongString'. But the case of 'SomeLongString' can vary. How?

I am using zsh, but a bash solution is also welcome.

flag

50% accept rate

3 Answers

vote up 6 vote down check

ZSH:

$ unsetopt CASE_GLOB

Or, if you don't want to enable case-insensitive globbing in general, you can activate it for only the varying part:

$ print -l (#i)(somelongstring)*

This will match any file that starts with "somelongstring" (in any combination of lower/upper case). The case-insensitive flag applies for everything between the parentheses and can be used multiple times. Read the manual zshexpn(1) for more information.

UPDATE Almost forgot, you have to enable extendend globbing for this to work:

setopt extendedglob
link|flag
BTW, I had to setopt EXTENDED_GLOB for it to work. – Agnel Kurian Oct 2 '08 at 6:56
vote up 5 vote down

bash:

shopt -s nocaseglob
link|flag
Thanks. I was hoping there was a way to specify it as part of the glob itself. The zsh manual mentions something like it but I was not able to figure it out. – Agnel Kurian Oct 1 '08 at 10:15
vote up 1 vote down

Depending on how deep you want to have this listing, find offers quite a lot in this regard:

find . -iname 'SomeLongString*' -maxdepth 1

This will only give you the files in the current directory. Important here is the -iname parameter instead of -name.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.