Created
May 11, 2017 05:28
-
-
Save lee8oi/030b62fe44c7f5f488f6d5e8eb5d3c35 to your computer and use it in GitHub Desktop.
A simple script for downloading the autoupdate archive for Albion Online.
This file contains 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 | |
# This script downloads the autoupdate archive for Albion Online. Useful if you | |
# have had problems running the game after using the official installer. | |
# | |
# If the game mentions the client is out of date just run this script again | |
# to get the latest version. | |
rm albiononline*.zip manifest.xml* &> /dev/null # cleanup | |
wget http://live.albiononline.com/autoupdate/manifest.xml | |
filename=`cat manifest.xml | grep -Po '(albiononline-linux-full.*.zip)'` | |
wget http://live.albiononline.com/autoupdate/$filename | |
unzip -fo $filename | |
chmod +x Albion-Online | |
rm albiononline*.zip manifest.xml* &> /dev/null # cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment