forked from Mirrors/freeswitch
b3d890ef25
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1086 d0543943-73ff-0310-b7d9-9358b9ac24b2
16 lines
188 B
Bash
Executable File
16 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# update.sh
|
|
#
|
|
# update copyright dates in files
|
|
|
|
a=`find . -name "*.[ch]"`
|
|
for x in $a; do
|
|
sed 's/(c) 2001-2004/(c) 2001-2005/' $x > $x.tmp;
|
|
mv $x.tmp $x;
|
|
done
|
|
|
|
|
|
|
|
|