Skip to content

Instantly share code, notes, and snippets.

@kylehickinson
Created October 15, 2012 21:46
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kylehickinson/3895765 to your computer and use it in GitHub Desktop.
A script to automatically download and move/rename the Sketch betas. Since Sketch's beta stops working and just sends you to the website, and I like to keep it in the /Applications folder the whole process of downloading it, unzipping it, renaming it, and
wget http://www.bohemiancoding.com/sketch/beta/sketch.zip
unzip -q sketch.zip
rm sketch.zip
rm -r "/Applications/Sketch (Beta).app"
sudo mv Sketch.app "/Applications/Sketch (Beta).app"
@kylehickinson
Copy link
Author

Script requires wget, which you can grab pretty easily via brew: brew install wget

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment