mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
14 lines
173 B
Text
14 lines
173 B
Text
|
#!/bin/sh
|
||
|
|
||
|
PLAN9=${PLAN9:-/opt/plan9}
|
||
|
export PLAN9
|
||
|
|
||
|
case "$PATH" in
|
||
|
$PLAN9/bin:*) ;;
|
||
|
*) export PATH=$PLAN9/bin:$PATH ;;
|
||
|
esac
|
||
|
|
||
|
if [ $# -gt 0 ]; then
|
||
|
exec "$@"
|
||
|
fi
|