Here’s a nice use of linux find to locate all ssl certificate files on a filesystem stored in directories name /certificates that excludes pesky .svn results:

find . -path “*/certificates/*” -not \( -name .svn -prune \)
I recently used this technique for pulling all certificates that were scatterred throughout a svn repository. Taking this output you [...]