mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
10 lines
122 B
Bash
Executable file
10 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export PLAN9=/usr/local/plan9
|
|
export PATH=$PLAN9/bin:$PATH
|
|
|
|
case $# in
|
|
[1-9]*)
|
|
exec "$@"
|
|
;;
|
|
esac
|