Last active
June 21, 2024 04:35
-
-
Save sandeepraju/3d9ca78ba59dabfc8d8c to your computer and use it in GitHub Desktop.
Download the latest bin of chromium for linux
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 | |
# source: http://askubuntu.com/a/64396/174460 | |
CHROMIUM_ROOT="http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64" | |
CHROMIUM_LATEST=`wget -q -O - "$CHROMIUM_ROOT/LAST_CHANGE"` | |
wget $CHROMIUM_ROOT/$CHROMIUM_LATEST/chrome-linux.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment