projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
RT#33484: Delete lines from quick payment entry
[freeside.git]
/
torrus
/
setup_tools
/
replace_rrfw.sh
1
#!/bin/sh
2
3
# replace all ocurrences of RRFW and rrfw to Torrus and torrus
4
5
IN=$1
6
sed -e 's/RRFW/Torrus/g' -e 's/rrfw/torrus/g' $IN >/tmp/$$
7
mv /tmp/$$ $IN
8