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