xref: /aosp_15_r20/external/libsrtp2/update.sh (revision 90e502c7aef8d77d0622bb67d75435c6190cfc1a)
1#!/bin/sh
2#
3# update.sh
4#
5# update copyright dates in files
6
7a=`find . -name "*.[ch]"`
8for x in $a; do
9    sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
10    mv $x.tmp $x;
11done
12
13
14
15
16