summaryrefslogtreecommitdiff
path: root/srtp/update.sh
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-06-22 13:59:20 +0000
committerErwin Nindl <nine@wirdorange.org>2007-06-22 13:59:20 +0000
commit0275479cb56c7f562f3513fef66c83fc44d1d8c9 (patch)
treef6fbb703cebf62d18b05e2a5e7591ac08c5b6702 /srtp/update.sh
parentsatp internet draft 00 final ietf version (diff)
added libsrtp to svn
Diffstat (limited to 'srtp/update.sh')
-rwxr-xr-xsrtp/update.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/srtp/update.sh b/srtp/update.sh
new file mode 100755
index 0000000..595b647
--- /dev/null
+++ b/srtp/update.sh
@@ -0,0 +1,15 @@
+#!/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
+
+
+
+