Use 'svn list -R' instead of find, and recognize comments in shell scripts

and {ssh,sshd}_config.
This commit is contained in:
Dag-Erling Smørgrav 2016-01-19 14:25:22 +00:00
parent c1ea5e1a86
commit 5ecdd3c4d3

View File

@ -5,10 +5,10 @@
:>keywords :>keywords
:>rcsid :>rcsid
find . -type f -name '*.[1-9ch]' | cut -c 3- | \ svn list -R | grep -v '/$' | \
while read f ; do while read f ; do
svn proplist -v $f | grep -q 'FreeBSD=%H' || continue svn proplist -v $f | grep -q 'FreeBSD=%H' || continue
egrep -l '(\.\\"|/\*) \$FreeBSD[:\$]' $f >>keywords egrep -l '^(#|\.\\"|/\*)[[:space:]]+\$FreeBSD[:\$]' $f >>keywords
egrep -l '__RCSID\("\$FreeBSD[:\$]' $f >>rcsid egrep -l '__RCSID\("\$FreeBSD[:\$]' $f >>rcsid
done done
sort -u keywords rcsid | xargs perl -n -i -e ' sort -u keywords rcsid | xargs perl -n -i -e '