aboutsummaryrefslogtreecommitdiff
path: root/bin/9
blob: 33b0d89cd0936db4637753f2f37b4e8cb5eb5ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

export PLAN9=${PLAN9:-/usr/local/plan9}
case "$PATH" in
$PLAN9/bin:*)
	;;
*)
	export PATH=$PLAN9/bin:$PATH
	;;
esac

case $# in
[1-9]*)
       exec "$@"
       ;;
esac