You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-fps/eduke32/files/eduke32-bin

13 lines
268 B

#!/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}