diff options
Diffstat (limited to 'torrus/setup_tools/replace_rrfw.sh')
-rwxr-xr-x | torrus/setup_tools/replace_rrfw.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/torrus/setup_tools/replace_rrfw.sh b/torrus/setup_tools/replace_rrfw.sh new file mode 100755 index 000000000..87b70592e --- /dev/null +++ b/torrus/setup_tools/replace_rrfw.sh @@ -0,0 +1,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 + |