summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2014-11-08 12:27:43 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2014-11-08 12:27:43 +0000
commit747cab428158eada08a87a2c0e1ac917ba3293e1 (patch)
tree809746ab3b5aab12f9e56f8ff9579284d474ddcd /tools
parentd2c9168954d982d3e7453e66f9e915e9fe45beac (diff)
No need for $Id$ now.
Diffstat (limited to 'tools')
-rw-r--r--tools/fix-ids.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/fix-ids.sh b/tools/fix-ids.sh
deleted file mode 100644
index 4621d2b4..00000000
--- a/tools/fix-ids.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-# $Id$
-
-for i in *.[ch] tmux.1; do
- (head -1 $i|grep '$OpenBSD' >/dev/null) || continue
- mv $i $i~ || exit
- sed 's/\$OpenBSD.* \$/$\Id$/' $i~ >$i || exit
- echo $i
-done