blob: 595b647f3ded657f5e25e17dd153212ef6925b85 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001#!/bin/sh
2#
3# update.sh
4#
5# update copyright dates in files
6
7a=`find . -name "*.[ch]"`
8for x in $a; do
9 sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
10 mv $x.tmp $x;
11done
12
13
14
15