Last active
April 15, 2016 02:15
-
-
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 file contains hidden or 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
| # 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