summaryrefslogtreecommitdiff
path: root/scripts/stats/replace.sh
blob: 1624364a9fb8f09971d5fc31f290382b54193988 (plain)
1
2
3
4
5
6
7
8
9
10
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