Find all non “.java” files but not in .svn directories
19-Aug-10I’m migrating some old projects to Maven and i need to move all resources out of the source tree. find . -type d -name ‘\.svn’ -prune -o -type f -not -iname "*.java" -printfind . -type d -name ‘\.svn’ -prune -o -type f -not -iname "*.java" -print Prune every directory named ‘.svn’ Or Type is file […]