Skip to content

Instantly share code, notes, and snippets.

@kylehickinson
kylehickinson / update-sketch-beta.sh
Created October 15, 2012 21:46
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"