pineapple-src
pineapple-src copied to clipboard
script for linux update Yuzu
I suggest a script that implements emulator update from the command line from main site
#!/bin/bash url=$(curl -s 'https://pineappleea.github.io/' | grep -o 'https://github.com/pineappleEA/pineapple-src/releases/tag/EA-[0-9]' | head -1) if [ -n "$url" ]; then appimage_url=$(echo $url | sed -E 's|https://github.com/(.)/releases/tag/EA-(.*)|https://github.com/\1/releases/download/EA-\2/Linux-Yuzu-EA-\2.AppImage|') wget $appimage_url -O ./Yuzu.AppImage else echo "unable find link or something else" fi