tpsv - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tpsv (391B)
       ---
            1 #!/bin/sh
            2 
            3 # add plan 9 postscript fonts
            4 GS_FONTPATH=$GS_FONTPATH:$PLAN9/postscript/font
            5 export GS_FONTPATH
            6 
            7 # 
            8 # gv has decided to rename all its -foo options to --foo.
            9 # 
           10 if gv -v 2>/dev/null | grep Usage >/dev/null
           11 then
           12         gv --nosafer --swap --style=$PLAN9/lib/gv.style --ad=$PLAN9/lib/gv.resource "$@"
           13 else
           14         gv -nosafer -swap -style $PLAN9/lib/gv.style -ad $PLAN9/lib/gv.resource "$@"
           15 fi