summaryrefslogtreecommitdiff
path: root/torrus/setup_tools/replace_rrfw.sh
blob: 87b70592e47ae9dfce9be39f1497e413af329dff (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# replace all ocurrences of RRFW and rrfw to Torrus and torrus

IN=$1
sed -e 's/RRFW/Torrus/g' -e 's/rrfw/torrus/g' $IN >/tmp/$$
mv /tmp/$$ $IN