We develop in a mixed environment – some people work on Macs and some work on Linux. This has proven to be a bit of a challenge at times, as those people who work on Linux are used to having their filesystems be case sensitive, so there’s no issue committing (accidentally or otherwise) multiple files differing just by case. (e.g.
Tag: case-insensitive
Ignore case when trying to match file names using find command in Linux
Right now, all I know to use is: that is case sensitive and it won’t find files named: How can I search so that all the above would be returned in the search to a case-insensitive matching? Answer Or you could use find / | grep -i string