Skip to content

Instantly share code, notes, and snippets.

@mrinterweb
Created January 4, 2010 07:24
Show Gist options
  • Save mrinterweb/268378 to your computer and use it in GitHub Desktop.
Save mrinterweb/268378 to your computer and use it in GitHub Desktop.
#!/bin/bash
mkdir /tmp/chromedownload && cd /tmp/chromedownload
curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/LATEST -o /tmp/chromedownload/LATEST --silent && LATEST=`cat /tmp/chromedownload/LATEST`
curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/$LATEST/chrome-mac.zip -o /tmp/chromedownload/chrome-mac.zip --silent
unzip -qq /tmp/chromedownload/chrome-mac.zip
cp -R /tmp/chromedownload/chrome-mac/Chromium.app /Applications
rm -rf /tmp/chromedownload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment