Created
August 6, 2015 00:05
-
-
Save gregneagle/822aed2d9421dc2dff8b to your computer and use it in GitHub Desktop.
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
% 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