summarylogtreecommitdiffstats
path: root/9
blob: 4032398039b8ccd49faf7444fa89999e544357df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

P9BASE=${P9BASE:-/opt/9base}
export P9BASE

case "$PATH" in
    $P9BASE/bin:*) ;;
    *) export PATH=$P9BASE/bin:$PATH ;;
esac

if [ $# -gt 0 ]; then
    exec "$@"
fi