mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
14 lines
437 B
Plaintext
14 lines
437 B
Plaintext
|
#! /bin/sh
|
||
|
# $OpenLDAP$
|
||
|
## Copyright 1998-2003 The OpenLDAP Foundation
|
||
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
||
|
## of this package for details.
|
||
|
#
|
||
|
# Update copyright statements
|
||
|
#
|
||
|
|
||
|
set -e # exit immediately if any errors occur
|
||
|
|
||
|
find . -type=f -not -name 'LICENSE*' -exec perl -pi -e 's/Copyright ([0-9]{4})([,\-][0-9]{2,4})*,? The OpenLDAP Foundation/Copyright $1-2003 The OpenLDAP Foundation/g;' {} \;
|
||
|
|