#!/bin/sh
#
# gv has decided to rename all its -foo options to --foo.
#
if gv -v 2>/dev/null | grep Usage >/dev/null
then
gv --nosafer --swap --style=$PLAN9/lib/gv.style --ad=$PLAN9/lib/gv.resource "$@"
else
gv -nosafer -swap -style $PLAN9/lib/gv.style -ad $PLAN9/lib/gv.resource "$@"
fi