Re: Need to adjust based on svn:execute
From: Buddy Burden <buddy_at_thinkgeek.com>
Date: 2005-02-12 02:22:02 CET
Robert,
> Would it be too intrusive to use a separate tool like rsync to keep
But that still wouldn't get the execute bits right, since the rsync would be
> $ svn -R propget svn:executable * | sed -nre s/'^(.*) - \*$'/'\1'/p | xargs
Yep, that looks like what I was trying to figure out. I hoped there was a
> I hope that's a useful starting point, at least.
Quite, thank you! I eventually came up with this:
svn -R propget svn:executable | awk -F' - ' '$2 == "*" { print $1 }' | each
where "each" is a home-grown command I have to take a list of file names and
So thanx for the nudge in the right direction.
-- Buddy
---------------------------------------------------------------------
|
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.