On Wed, 9 Nov 2005, Ron Grabowski <[EMAIL PROTECTED]> wrote:

> Is there a switch for svn.exe to make it recursively touch only
> folders?

I don't think so.  But on a Unix box or using Cygwin something like

find . -type d ! -name .svn -print0 \
    | xargs -0 -e svn propset PROPNAME PROPVAL

should work (untested).  If your find doesn't support -print0 (i.e. no
GNU find), use print and drop the -0 in xargs - and hope you don't
have spaces in any file names.

Stefan

Reply via email to