mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
20 lines
229 B
Bash
20 lines
229 B
Bash
#!/bin/sh -f
|
|
RC=""
|
|
for i in "$PLAN9" P9PATHS; do
|
|
if [ -d "$i" -a -x "$i/bin/rc" ]; then
|
|
export PLAN9="$i"
|
|
RC="$i/bin/rc"
|
|
break;
|
|
fi
|
|
done
|
|
|
|
if [ ! -n "$RC" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
if [ -n "$1" ]; then
|
|
exec $RC $@
|
|
else
|
|
true
|
|
fi
|