1#! /bin/sh 2# 3# Script updates the copyright year in every file in Valgrind that contains 4# a copyright notice. Assumes they're all in the same format: 5# 6# "Copyright (C) 20xy-2017" 7# 8# where x can be 0 or 1 and y can be anything. 9# To use: 10# - change the years in the 'perl' command below appropriately. 11# - Run it from the base directory of a Valgrind workspace. 12# - And check the results look ok by diff'ing against the repository. 13# 14# Note that it will spit out some warnings when it runs; ignore these. 15# 16 17# The find command deliberately skips .svn/ subdirs -- we don't want to 18# change them. 19for i in `find . -name '*.[chS]' -o -name '*.in' -type f -not -path '*.svn\/*'` ; do 20 echo $i 21 if [ -L $i ]; then continue; fi # skip symbolic links 22 perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2015/Copyright (C) 20$1$2-2017/' < $i > tmp.$$ 23 mv tmp.$$ $i 24 25# Copyright IBM Corp. 2010-2011 26 27 perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2015/Copyright IBM Corp. 20$1$2-2017/' < $i > tmp.$$ 28 mv tmp.$$ $i 29done 30