Skip to content

Instantly share code, notes, and snippets.

View samlehman's full-sized avatar
👽

Sam Lehman samlehman

👽
View GitHub Profile
@samlehman
samlehman / cask_upgrade.sh
Last active June 17, 2016 19:54
Script upgrading outdated brew casks
#!/usr/bin/env bash
unset SSL_CERT_FILE
(set -x; brew update;)
(set -x; brew cask update;)
(set -x; brew cleanup;)
(set -x; brew cask cleanup;)
red=`tput setaf 1`