Last active
March 6, 2019 05:01
-
-
Save geoffyuen/d9741c04ce60bab777491ffa0c7470a2 to your computer and use it in GitHub Desktop.
ia-rcade helper scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # search for game supply keyword or words wrapped in quotes, ia-rade to download and play | |
| IFS=$'\n' | |
| results=( $(mame -listfull | grep -i "$1") ) | |
| unset IFS | |
| PS3="Type a number or ctrl-c to quit: " | |
| select opt in "${results[@]}" | |
| do | |
| if [ "$REPLY" = "q" ]; then | |
| exit 0 | |
| else | |
| rom=$(echo $opt | awk '{print $1;}') | |
| ia-rcade -noexecmame $rom | |
| mame $rom | |
| exit 0 | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment