summaryrefslogtreecommitdiffstats
path: root/mantools/dehtml
diff options
context:
space:
mode:
Diffstat (limited to 'mantools/dehtml')
-rwxr-xr-xmantools/dehtml9
1 files changed, 9 insertions, 0 deletions
diff --git a/mantools/dehtml b/mantools/dehtml
new file mode 100755
index 0000000..cc120de
--- /dev/null
+++ b/mantools/dehtml
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+for i
+do
+ case $i in
+ /*) lynx -dump file://localhost$i;;
+ *) lynx -dump file://localhost`pwd`/$i;;
+ esac
+done