aboutsummaryrefslogtreecommitdiffstats
path: root/doc/utils/cleanhtml.sh
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-28 09:07:55 +0000
committerMartin Willi <martin@strongswan.org>2006-04-28 09:07:55 +0000
commit83cb0b0e8cc1e97efdbf53c4e0a14121aef08b42 (patch)
tree62b5b705196fdaf9d647199b700db7a7c359ccca /doc/utils/cleanhtml.sh
parenta06e45dc9c91c96954505dfcee52e734742618a4 (diff)
downloadstrongswan-83cb0b0e8cc1e97efdbf53c4e0a14121aef08b42.tar.bz2
strongswan-83cb0b0e8cc1e97efdbf53c4e0a14121aef08b42.tar.xz
Diffstat (limited to 'doc/utils/cleanhtml.sh')
-rwxr-xr-xdoc/utils/cleanhtml.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/doc/utils/cleanhtml.sh b/doc/utils/cleanhtml.sh
deleted file mode 100755
index a3ea2afac..000000000
--- a/doc/utils/cleanhtml.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-# script to clean up HTML files
-# removes formatting added by htmldoc
-#
-# first argument is sedscript to use
-f=$1
-shift
-# remaining args are files to process
-for i
-do
- sed -f $f $i > tmp
- mv tmp $i
-done