Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set -e
- temp_zip=`mktemp`
- temp_exe=`mktemp`
- command -v curl >/dev/null && alias download='curl -s -L'
- command -v wget >/dev/null && alias download='wget -q -O-'
- download 'https://unvanquished.net/download/linux' > "$temp_zip"
- unzip -qq -p "$temp_zip" > "$temp_exe"
- /lib64/ld-linux-x86-64.so.2 "$temp_exe"
- rm "$temp_zip"
- rm "$temp_exe"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement