freeswitch/libs/srtp/update.sh
Anthony Minessale b3d890ef25 add srtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1086 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 16:10:03 +00:00

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