aboutsummaryrefslogtreecommitdiffstats
path: root/programs/charon/scripts/replace
blob: adfc8e09a037175580b396c19a73b7cbb5b6a804 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

FILES=`find . -name '*.[ch]'`
for FILE in $FILES
do
	TMP=${FILE}_tmp
	sed "s/$1/$2/g" < $FILE > $TMP
	mv $TMP $FILE
done