mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
16 lines
179 B
Bash
Executable file
16 lines
179 B
Bash
Executable file
#!/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
|