Skip to content

Instantly share code, notes, and snippets.

@yaotti
Created July 29, 2010 11:53
Show Gist options
  • Save yaotti/497922 to your computer and use it in GitHub Desktop.
Save yaotti/497922 to your computer and use it in GitHub Desktop.
download and install the latest chromium for mac
#!/bin/sh
rooturl="http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/"
zipfile="chrome-mac.zip"
cd ~/tmp
rm -rf chrome-mac*
wget $rooturl`curl ${rooturl}LATEST`"/"$zipfile
unzip $zipfile
cd ./chrome-mac
cp -R ./Chromium.app /Applications/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment