summaryrefslogtreecommitdiff
path: root/scripts/stats/replace.sh
diff options
context:
space:
mode:
authorPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-07 15:28:27 +0200
committerPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-07 15:28:27 +0200
commitd53f89f0f82527e010a5a194b9977556c68f8b1e (patch)
tree5a2303a8f0190af542d8bcf8878aaebe016cf6fc /scripts/stats/replace.sh
parentb8b183de719931e6d95c99a4aa2a697435c0fb1d (diff)
remove obsolete scripts
Diffstat (limited to 'scripts/stats/replace.sh')
-rwxr-xr-xscripts/stats/replace.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/stats/replace.sh b/scripts/stats/replace.sh
deleted file mode 100755
index 1624364..0000000
--- a/scripts/stats/replace.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-from="vs.buetow.org"
-to="vs-sim.buetow.org"
-
-for log in *.log
-do
- sed "s/$from/$to/" $log > $log.new
- mv -f $log.new $log
-done
-