Re: What's up with the SVN repository?

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Mel Flynn
Date: Sunday, August 9, 2009 - 10:27 pm

On Saturday 08 August 2009 12:49:36 Doug Barton wrote:

Well, I took the lazy road, cause I didn't feel like sorting out what 
directories were not under svn's control (and thus not showing up in svn 
diff).
svn switch worked fine and fixing the keywords was a breeze:
find . -name '.svn' -prune -o -type f -print |while read FILE; do
        if grep -q '\$FreeBSD: head/.*\$' ${FILE}; then
                sed -e 's,\$FreeBSD: head/,$FreeBSD: stable/8/,' -i '' ${FILE}
        else
                echo "No match: ${FILE}"
        fi
done

I put in the else so I could see which files didn't have a keyword. That was 
fun when we went into contrib :)
-- 
Mel
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
What's up with the SVN repository?, Thomas Backman, (Sat Aug 8, 10:27 am)
Re: What's up with the SVN repository?, Ed Schouten, (Sat Aug 8, 10:44 am)
Re: What's up with the SVN repository?, Gary Palmer, (Sat Aug 8, 10:58 am)
Re: What's up with the SVN repository?, Mel Flynn, (Sat Aug 8, 11:44 am)
Re: What's up with the SVN repository?, Dimitry Andric, (Sat Aug 8, 11:49 am)
Re: What's up with the SVN repository?, Doug Barton, (Sat Aug 8, 12:02 pm)
Re: What's up with the SVN repository?, Erik Trulsson, (Sat Aug 8, 12:05 pm)
Re: What's up with the SVN repository?, Mel Flynn, (Sat Aug 8, 12:38 pm)
Re: What's up with the SVN repository?, Artis Caune, (Sat Aug 8, 1:39 pm)
Re: What's up with the SVN repository?, Doug Barton, (Sat Aug 8, 1:49 pm)
Re: What's up with the SVN repository?, Doug Barton, (Sat Aug 8, 1:50 pm)
Re: What's up with the SVN repository?, Kostik Belousov, (Sat Aug 8, 2:02 pm)
Re: What's up with the SVN repository?, Dimitry Andric, (Sat Aug 8, 2:03 pm)
Re: What's up with the SVN repository?, Dimitry Andric, (Sat Aug 8, 2:05 pm)
Re: What's up with the SVN repository?, Mel Flynn, (Sat Aug 8, 2:14 pm)
Re: What's up with the SVN repository?, Robert Watson, (Sat Aug 8, 2:14 pm)
Re: What's up with the SVN repository?, Tim Kientzle, (Sat Aug 8, 7:48 pm)
Re: What's up with the SVN repository?, Henri Hennebert, (Sun Aug 9, 2:22 am)
Re: What's up with the SVN repository?, Simon L. Nielsen, (Sun Aug 9, 2:53 am)
Re: What's up with the SVN repository?, Kostik Belousov, (Sun Aug 9, 3:21 am)
Re: What's up with the SVN repository?, Julian Stecklina, (Sun Aug 9, 6:29 am)
Re: What's up with the SVN repository?, Giorgos Keramidas, (Sun Aug 9, 6:52 am)
Re: What's up with the SVN repository?, Christoph Mallon, (Sun Aug 9, 7:31 am)
Re: What's up with the SVN repository?, Glen Barber, (Sun Aug 9, 12:24 pm)
Re: What's up with the SVN repository?, Giorgos Keramidas, (Sun Aug 9, 1:01 pm)
Re: What's up with the SVN repository?, Yoshihiro Ota, (Sun Aug 9, 7:04 pm)
Re: What's up with the SVN repository?, Mel Flynn, (Sun Aug 9, 10:27 pm)