#!/bin/sh
# Use the browse command to view man pages.
TMP=/usr/tmp/.myman$$
rm -rf $TMP
man $1 | col -b | unexpand -a > $TMP
if [ -s $TMP ]
then
    browse $TMP
fi
rm -rf $TMP
