mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-04 00:00:14 -04:00
14 lines
128 B
Bash
Executable File
14 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
files=`find -name '*.[ch]'`
|
|
|
|
for file in $files
|
|
do
|
|
sed -e $1 $file > $file.sedtmp
|
|
mv $file.sedtmp $file
|
|
done
|
|
|
|
|
|
|
|
|