summaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/update.sh b/update.sh
deleted file mode 100755
index 595b647..0000000
--- a/update.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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
-
-
-
-