blob: d116f82925c0c05a1199f8e4c7b29ca95b21f977 [file] [log] [blame]
Cullen Jennings235513a2005-09-21 22:51:36 +00001#!/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-2004/(c) 2001-2005/' $x > $x.tmp;
10 mv $x.tmp $x;
11done
12
13
14
15