freebsd-nq/crypto/openssh/FREEBSD-tricks

21 lines
606 B
Plaintext
Raw Normal View History

2002-10-29 09:56:16 +00:00
# $FreeBSD$
# Shell code to remove FreeBSD tags before merging
grep -rl '\$Fre.BSD:' . |
2002-10-29 09:56:16 +00:00
while read f ; do
sed -i.orig -e '/\$Fre.BSD:/d' $f
2002-10-29 09:56:16 +00:00
done
# Shell + Perl code to add FreeBSD tags wherever an OpenBSD or Id tag occurs
egrep -rl '\$(Id|OpenBSD):' . |
2002-10-29 09:56:16 +00:00
xargs perl -n -i.orig -e 'print; s/\$(Id|OpenBSD): [^\$]*\$/\$FreeBSD\$/ && print'
# Shell code to reexpand FreeBSD tags
grep -rl '\$FreeBSD\$' . |
2002-10-29 09:56:16 +00:00
while read f ; do
id=$(cvs diff $f | grep '\$Fre.BSD:' | sed 's/.*\(\$Fre.BSD:.*\$\).*/\1/') ;
2002-10-29 09:56:16 +00:00
if [ -n "$id" ] ; then
sed -i.orig -e "s@\\\$Fre.BSD\\\$@$id@" $f ;
2002-10-29 09:56:16 +00:00
fi ;
done