1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-05 18:13:27 +00:00

16 lines
188 B
Bash
Raw Permalink Normal View History

#!/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