[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn propset -R failure

From: Andy Berdan <berdandy_at_gmail.com>
Date: 2004-08-06 15:38:45 CEST

> I ran across a problem recursively setting properties, shown below. Is
> this a known bug, new problem, or am I doing something I shouldn't?

Not a bug.

* is replaced by your shell by all files that match, whether or not
they're in svn.

There's two ways to do what you want to do... do a recursive propset
from your current directory:
# svn propset svn:keywords Id . -R

or, use command substitution (bash example):
# svn propset svn:keywords Id `svn ls` -R

The former is more efficient, but the latter is more interesting. :)

Andy.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Aug 6 15:39:12 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.