Ignore case when trying to match file names using find command in Linux Ignore case when trying to match file names using find command in Linux linux linux

Ignore case when trying to match file names using find command in Linux


Use the -iname option instead of -name.


Or you could use find / | grep -i string


This works as well, if you want to avoid the single quotes:

find . -iname \*string\*