]> git.ipfire.org Git - thirdparty/strongswan.git/blame - programs/charon/scripts/replace
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / charon / scripts / replace
CommitLineData
8bc96e08
MW
1#!/bin/bash
2
3FILES=`find . -name '*.[ch]'`
4for FILE in $FILES
5do
6 TMP=${FILE}_tmp
7 sed "s/$1/$2/g" < $FILE > $TMP
8 mv $TMP $FILE
9done