NetBSD/gnu/dist/postfix/mantools/dehtml
2006-07-19 01:16:27 +00:00

10 lines
135 B
Bash
Executable File

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