Blob


1 #!/bin/sh
3 #
4 # gv has decided to rename all its -foo options to --foo.
5 #
6 if gv -v 2>/dev/null | grep Usage >/dev/null
7 then
8 gv --nosafer --swap --style=$PLAN9/lib/gv.style --ad=$PLAN9/lib/gv.resource "$@"
9 else
10 gv -nosafer -swap -style $PLAN9/lib/gv.style -ad $PLAN9/lib/gv.resource "$@"
11 fi