OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / freeswan / 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