Skip to content

Instantly share code, notes, and snippets.

@sumardi
Created September 24, 2019 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumardi/ac9a0716c6d55884edbd990470289cd7 to your computer and use it in GitHub Desktop.
Save sumardi/ac9a0716c6d55884edbd990470289cd7 to your computer and use it in GitHub Desktop.
Homebrew : List packages and what uses them
brew list -1 | while read cask; do echo -ne "\x1B[1;34m $cask \x1B[0m"; brew uses $cask --installed | awk '{printf(" %s ", $0)}'; echo ""; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment