xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/dehtml (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1#!/bin/sh
2
3for i
4do
5    case $i in
6    /*) lynx -dump file://localhost$i;;
7     *) lynx -dump file://localhost`pwd`/$i;;
8    esac
9done
10