This is very similar to this question, but I need to take it a bit further. I'm using a synology drive and there are tons of @eaDir
directories which I want to ignore (and the files in those directories). How can I do that?
Here's a recursive command that works great with hidden files (which I want)...but how do I alter this to exclude directories names @eaDir
?
find .//. ! -name . -print | grep -c //
-prune
option as indicated in the accepted answer in the post you link to? – Anthon Apr 24 '16 at 15:29