#!/bin/sh
#
# vman - wrapper around man which uses vmanpg as pager.

if [ "$1" = "-k" -o "$1" = "-f" ]; then
  exec man $*
else
  exec man -P vmanpg $*
fi
