fine-tune.

This commit is contained in:
Dag-Erling Smørgrav 2005-09-03 06:42:11 +00:00
parent 44bd2bc19a
commit ad69811c17
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149748

View File

@ -1,14 +1,14 @@
# $FreeBSD$
# Shell code to remove FreeBSD tags before merging
grep -rl '\$Fre[e]BSD:' . >tags
grep -rl '\$Fre[e]BSD:' . | grep -v FREEBSD >tags
cat tags | while read f ; do
sed -i.orig -e '/\$Fre[e]BSD:/d' $f
done
# Shell + Perl code to add FreeBSD tags wherever an OpenBSD or Id tag occurs
cat tags |
xargs perl -n -i.orig -e 'print; s/\$(Id|OpenBSD): [^\$]*\$/\$Fre[e]BSD\$/ && print'
xargs perl -n -i.orig -e 'print; s/\$(Id|OpenBSD): [^\$]*/\$FreeBSD/ && print'
# Shell code to reexpand FreeBSD tags
cat tags | while read f ; do