Find File Case-Insensitively 🔎
When using the find
command, consider the -iname
flag. It works like -name
:
True if the last component of the pathname being examined matches pattern.
But with case insensitivity:
-iname pattern
Like -name, but the match is case insensitive.
Here's a sample command, which will match utils.js
and Utils.js
.
$ find . -iname Utils.js
See man find
for more information. h/t Raelyn.