mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
13 lines
173 B
Bash
Executable file
13 lines
173 B
Bash
Executable file
#!/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
|