mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-05 21:04:01 +00:00
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
16 lines
188 B
Bash
16 lines
188 B
Bash
#!/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
|
|
|
|
|
|
|
|
|