mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
13 lines
230 B
Bash
Executable file
13 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#
|
|
# gv has decided to rename all its -foo options to --foo.
|
|
#
|
|
if gv -v 2>/dev/null | grep Usage >/dev/null
|
|
then
|
|
m=-
|
|
else
|
|
m=''
|
|
fi
|
|
|
|
gv $m-nosafer $m-swap $m-style $PLAN9/lib/gv.style $m-ad $PLAN9/lib/gv.resource "$@"
|