summaryrefslogtreecommitdiff
path: root/scripts/stats/replace.sh
diff options
context:
space:
mode:
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
-