Originally posted by Flyser
View Post


#!/bin/sh #Linux Steam download script by Dylan Taylor mkdir steam; cd steam #Create a directory and cd to it wget $(wget -qO- http://store.steampowered.com/public/client/steam_client_linux | egrep "*zip*" | sed 's/"file"//' | tr -d '\011' | sed 's/\"//g' | sed 's/^/http:\/\/store.steampowered.com\/public\/client\//' | tr '\n' ' ') #Download the files unzip -e -o \*.zip.\* #Extract the files rm *.zip.* &> /dev/null #Cleanup... #Set permissions chmod +x steam.sh chmod +x ./*/steam #Not platform specific... ./steam.sh #Run the main steam bash script
wget -qO- http://store.steampowered.com/public/client/steam_client_linux|awk -F\" '/file/{print $4}'|wget -i- -NB http://store.steampowered.com/public/client/ unzip -o -d steam \*.zip.\* chmod +x steam/steam.sh steam/linux32/steam steam/steam.sh
Comment