diff options
author | Martin Willi <martin@strongswan.org> | 2006-05-10 07:58:29 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-05-10 07:58:29 +0000 |
commit | 95806de938a287ca71b28fa07016c9785130c1da (patch) | |
tree | de3abb7539e0dc90f8ab4d81d335458a93643bd0 /src/charon/scripts/replace | |
parent | 607d174dcbe1072d51945e46f3dfdc4c314539f1 (diff) | |
download | strongswan-95806de938a287ca71b28fa07016c9785130c1da.tar.bz2 strongswan-95806de938a287ca71b28fa07016c9785130c1da.tar.xz |
Diffstat (limited to 'src/charon/scripts/replace')
-rwxr-xr-x | src/charon/scripts/replace | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/charon/scripts/replace b/src/charon/scripts/replace deleted file mode 100755 index adfc8e09a..000000000 --- a/src/charon/scripts/replace +++ /dev/null @@ -1,9 +0,0 @@ -#!/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 |