Skip to content

Instantly share code, notes, and snippets.

@gregneagle
Created August 6, 2015 00:05
Show Gist options
  • Save gregneagle/822aed2d9421dc2dff8b to your computer and use it in GitHub Desktop.
Save gregneagle/822aed2d9421dc2dff8b to your computer and use it in GitHub Desktop.
% curl -s http://www.getmacapps.com/raw/3
#!/bin/bash
mkdir ~/getmacapps_temp
cd ~/getmacapps_temp
# Installing Chrome
curl -L -O "https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg"
hdiutil mount -nobrowse googlechrome.dmg
cp -R "/Volumes/Google Chrome/Google Chrome.app" /Applications
hdiutil unmount "/Volumes/Google Chrome"
rm googlechrome.dmg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment