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
Posted by simonb at 06:48 PM in Programming | Email this entry
The trackback URL for this entry is: http://www.simonb.com/index.php/trackback/109/KtxmIoD7/
Trackbacks:
No trackbacks yet.Comments:
No comments yet.Post a Comment:
Next entry: Portable Digital Audio Recorders
Previous entry: Firebug