Skip to content

Instantly share code, notes, and snippets.

@P7h
Last active April 15, 2016 02:15
Show Gist options
  • Select an option

  • Save P7h/9741976 to your computer and use it in GitHub Desktop.

Select an option

Save P7h/9741976 to your computer and use it in GitHub Desktop.
Commands to download Chromium from the shell. Just in case, if you dont want to go thru this hassle, check Chromium Auto Updater. http://www.firstever.eu/en/chromium-auto-updater.
# This script lists down commands to download Chromium [both 32 and 64 bit] from the shell.
#Just in case, if you dont want to go thru this hassle, check Chromium Auto Updater. http://www.firstever.eu/en/chromium-auto-updater.
#Steps for downloading 32 bit Chromium for Windows.
export ver=`curl http://commondatastorage.googleapis.com/chromium-browser-continuous/Win/LAST_CHANGE`
echo $ver
wget http://commondatastorage.googleapis.com/chromium-browser-continuous/Win/$ver/chrome-win32.zip
mv chrome-win32.zip chrome-win32__$ver.zip
#Steps for downloading 64 bit Chromium for Windows.
#Though filename says 32 bit, its actually 64 bit Chromium. :-)
export ver=`curl http://commondatastorage.googleapis.com/chromium-browser-continuous/Win/LAST_CHANGE`
echo $ver
wget http://commondatastorage.googleapis.com/chromium-browser-continuous/Win_x64/$ver/chrome-win32.zip
mv chrome-win32.zip chrome-win32__$ver.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment