Linux – Case Insensitive search from find command

findlinux

I am not able to figure out how can I do case-insensitive search using the find command.

I tried

find . -name -i pattern

And it does not work.

Best Answer

Use this:

find . -iname PatTeRn -print
Related Question