Wednesday, March 9, 2011

Using find

find with -prune to kill .svn dirs:
find . -path '*/.svn' -prune -o -print
this works better:
find examples -not -name .svn -name '*.java'

No comments:

Post a Comment