simonb.com: blog > articles from Friday, 15 December 2006

skip to content
You are here: 

On Friday, 15 December 2006 we wrote…

Friday, 15 December 2006

Skipping .svn Directories

find and grep are the programmers friend. But when using Subversion find will also decend into .svn directories. Generally we don’t want this to happen. The following find command will skip .svn directories. For more type ‘man find’ at your favorite prompt.

find . \( -type d -and -name .svn -and -prune \) -or -type f -print

read more

Tags: