This is mostly one of those “note to self” type posts so I can remember what I ran into. Maybe it’ll help somebody else as well, in which case: yay! ;] TL;DR: check if you have case-sensitivity enabled on the directories that are giving you problems using fsutil file queryCaseSensitiveInfo <directory>. If it is enabled,…
Tag: unix
Neat find/grep trick
So for the longest time I was always bothered by the fact that I couldn’t grep for files of a particular name that were buried several levels deep. For example, if you wanted to do grep -r nifty.java.property *.properties, then unless you had a *.properties file in your current directory, grep would assume that there…