]> git.ipfire.org Git - thirdparty/strongswan.git/blob - doc/utils/cleanhtml.sh
a3ea2afac83a3de8f03ec5bb8c567ce2864e7683
[thirdparty/strongswan.git] / doc / utils / cleanhtml.sh
1 # script to clean up HTML files
2 # removes formatting added by htmldoc
3 #
4 # first argument is sedscript to use
5 f=$1
6 shift
7 # remaining args are files to process
8 for i
9 do
10 sed -f $f $i > tmp
11 mv tmp $i
12 done