I'm going to leave this here with no comment other than "this is why we can't have nice things," and, "don't yell at me for using grep, some implementations of find -name are wonky."
[rldane /home/public]$ uname
FreeBSD
[rldane /home/public]$ find /etc 2>&- |grep -c "[A-Z]"
18
[rldane /home/public]$
[email protected]$ uname
OpenBSD
[email protected]$ find /etc 2>&- |grep -c "[A-Z]"
52
[email protected]$
[email protected]$ uname
NetBSD
[email protected]$ find /etc 2>&- |grep -c "[A-Z]"
173
[email protected]$
~ $ uname
Linux
~ $ find /etc 2>&- |grep -c "[A-Z]"
672
~ $
Ok, fine, here's the punchline:If you feel the need to capitalize stuff in /etc, YOU HAVE LOST THE PLOT.
#Windowzification #Macification
