summaryrefslogtreecommitdiffstats
path: root/mantools/dehtml
blob: cc120de84ca5092c51b997ff519c04d1f990b41a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for i
do
    case $i in
    /*) lynx -dump file://localhost$i;;
     *) lynx -dump file://localhost`pwd`/$i;;
    esac
done