Working game menu!
This commit is contained in:
parent
a9be38ea09
commit
9a85a6d12d
@ -8,7 +8,7 @@ path="${path%/*}"
|
||||
declare -A gameList
|
||||
for i in $path/*/ ; do
|
||||
i="${i::-1}"
|
||||
gameList[${i##*/}]="$i"
|
||||
gameList[${i##*/}]="${i}"
|
||||
done
|
||||
gameList[exit]="Exit"
|
||||
while : ; do
|
||||
@ -19,7 +19,8 @@ echo "$i"
|
||||
echo '|'
|
||||
done) --stdout)"
|
||||
if [[ "$game" != "exit" && -n "$game" ]]; then
|
||||
eval "${gameList[$game]}"
|
||||
cd "${gameList[$game]}"
|
||||
./$game""
|
||||
else
|
||||
break
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user