plan9port/bin/9

20 lines
192 B
Text
Raw Permalink Normal View History

2005-01-07 23:26:14 +00:00
#!/bin/sh
2005-01-14 18:21:12 +00:00
PLAN9=${PLAN9:-/usr/local/plan9}
export PLAN9
case "$PATH" in
$PLAN9/bin:*)
;;
*)
2005-01-14 18:21:12 +00:00
PATH=$PLAN9/bin:$PATH
export PATH
;;
esac
2005-01-07 23:26:14 +00:00
case $# in
[1-9]*)
exec "$@"
;;
esac