fine-tune.
This commit is contained in:
parent
44bd2bc19a
commit
ad69811c17
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user