diff options
Diffstat (limited to '')
-rwxr-xr-x | mantools/dehtml | 9 |
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 |