Skip to content

Instantly share code, notes, and snippets.

@nmccready
Created June 14, 2014 02:02
Show Gist options
  • Save nmccready/adfae27c498e0795767f to your computer and use it in GitHub Desktop.
Save nmccready/adfae27c498e0795767f to your computer and use it in GitHub Desktop.
#!/bin/sh
#reinstall everything you currently have in brew
for f in `brew list`; do
echo $f
brew uninstall $f && brew install $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment