Skip to content

Instantly share code, notes, and snippets.

@rusagent
Created May 5, 2023 00:46
Show Gist options
  • Save rusagent/683a1b13552082344f7ee6483b18a147 to your computer and use it in GitHub Desktop.
Save rusagent/683a1b13552082344f7ee6483b18a147 to your computer and use it in GitHub Desktop.
yuzu ea appimager auto updater bash script
#!/bin/sh
cd /tmp
curl -s https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest \
| grep -e "https.*Linux-.*Yuzu" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -qi -
FILE=`find /tmp -name '*Linux*Yuzu*' 2>/dev/null`
chmod +x $FILE
mv $FILE /home/deck/Applications/yuzu.AppImage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment