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

for i
do
    case $i in
    /*) lynx -width=256 -dump file://localhost$i;;
     *) lynx -width=256 -dump file://localhost`pwd`/$i;;
    esac
done | grep -v 'file://localhost/'