plan9port/bin/9

17 lines
179 B
Text
Raw Normal View History

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