blob: 8a7680efb33617e293ea55e2e271a32d2440f2e1 (
plain)
1
2
3
4
5
|
rgrepc -l 'Copyright.*Regents' | while read FILE
do
pipe sed 's/^\(.*\)\(Copyright.*Regents.*\)$/ * Portions Copyright (c) 1996-1999, PostgreSQL Global Development Group\
\1Portions \2/g' $FILE
done
|