freebsd-dev/crypto/openssh/freebsd-pre-merge.sh

18 lines
433 B
Bash
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
#
:>keywords
:>rcsid
find . -type f -name '*.[1-9ch]' | cut -c 3- | \
while read f ; do
svn proplist -v $f | grep -q 'FreeBSD=%H' || continue
2016-01-19 13:15:57 +00:00
egrep -l '(\.\\"|/\*) \$FreeBSD[:\$]' $f >>keywords
egrep -l '__RCSID\("\$FreeBSD[:\$]' $f >>rcsid
done
sort -u keywords rcsid | xargs perl -n -i -e '
$strip = $ARGV if /\$(Id|OpenBSD):.*\$/;
print unless (($strip eq $ARGV || /__RCSID/) && /\$FreeBSD[:\$]/);
'