blob: 595b647f3ded657f5e25e17dd153212ef6925b85 [file] [log] [blame]
Param Reddappagari386ce4d2011-10-04 12:15:40 -07001#!/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