Skip to content
Snippets Groups Projects
Commit 87f0479a authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Script I use to update copyrights once a year

parent 3cc07977
No related branches found
No related tags found
No related merge requests found
#! /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;' {} \;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment