30 lines
650 B
Bash
Executable File
30 lines
650 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mypath="$( dirname $0 )"
|
|
cmd="$mypath/showscene"
|
|
getnext="$mypath/getval _scene"
|
|
|
|
. "$mypath/common"
|
|
|
|
scene="$( $getnext )"
|
|
if [ ! "$scene" ]; then
|
|
scene='start'
|
|
fi
|
|
|
|
while [ "$scene" ]; do
|
|
# if rlwrap is found on the system, use it to provide readline capabilities
|
|
# (which will hopefully prevent ragequits to due re-typing long, mistyped
|
|
# commands)
|
|
which rlwrap >/dev/null && {
|
|
rlwrap -H "$GSGP_PROFILE_PATH/.history" $cmd $scene
|
|
} || $cmd $scene
|
|
|
|
# if the scene stated that we should end, then we should probably end
|
|
if [ $? -eq 100 ]; then
|
|
exit
|
|
fi
|
|
|
|
scene="$( $getnext )"
|
|
done
|
|
|