13 lines
268 B
Bash
13 lines
268 B
Bash
#!/bin/sh
|
|
|
|
# Get all installed zip files
|
|
zips=$(ls /usr/share/games/eduke32/*.zip)
|
|
|
|
# Create opts for eduke32
|
|
for zip in ${zips[@]}; do
|
|
opts+="-g ${zip} "
|
|
done
|
|
|
|
# Switch to /tmp, for writing there the log file and run eduke32 with set opts
|
|
cd /tmp && eduke32 ${opts}
|