diff options
Diffstat (limited to 'scripts/stats/replace.sh')
| -rwxr-xr-x | scripts/stats/replace.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/stats/replace.sh b/scripts/stats/replace.sh new file mode 100755 index 0000000..1624364 --- /dev/null +++ b/scripts/stats/replace.sh @@ -0,0 +1,11 @@ +#!/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 + |
