Skip to content

Instantly share code, notes, and snippets.

@marksilvis
Last active May 5, 2017 01:28
Show Gist options
  • Save marksilvis/db0d4d88586499c3a1aa5ee940c888ee to your computer and use it in GitHub Desktop.
Save marksilvis/db0d4d88586499c3a1aa5ee940c888ee to your computer and use it in GitHub Desktop.
Find unused brew formulas
brew list |
while read cask; do echo -n $cask; brew uses --installed $cask |
awk '{printf(" %s ", $0)}'; echo ""; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment