strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added the ikev2/any-interface scenario
[strongswan.git]
/
scripts
/
sedder
1
#!/bin/bash
2
3
files=`find -name '*.[ch]'`
4
5
for file in $files
6
do
7
sed -e $1 $file > $file.sedtmp
8
mv $file.sedtmp $file
9
done
10
11
12
13