~ubuntu-branches/ubuntu/vivid/sflphone/vivid

1
2
3
4
5
6
7
8
9
10
11
#!/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