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