plan9port/bin/psv

16 lines
391 B
Text
Raw Permalink Normal View History

2004-06-10 19:51:28 +00:00
#!/bin/sh
2006-01-18 16:57:55 +00:00
# add plan 9 postscript fonts
GS_FONTPATH=$GS_FONTPATH:$PLAN9/postscript/font
export GS_FONTPATH
#
# gv has decided to rename all its -foo options to --foo.
#
if gv -v 2>/dev/null | grep Usage >/dev/null
then
2005-02-28 20:20:18 +00:00
gv --nosafer --swap --style=$PLAN9/lib/gv.style --ad=$PLAN9/lib/gv.resource "$@"
else
2005-02-28 20:20:18 +00:00
gv -nosafer -swap -style $PLAN9/lib/gv.style -ad $PLAN9/lib/gv.resource "$@"
fi