Skip to content

Instantly share code, notes, and snippets.

@vrillusions
Created December 10, 2013 17:49
Show Gist options
  • Save vrillusions/7894923 to your computer and use it in GitHub Desktop.
Save vrillusions/7894923 to your computer and use it in GitHub Desktop.
Show detailed information for all installed homebrew packages.
#!/bin/bash
# This shouldn't fall under copywrite law but just in case:
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# For more information, please refer to <http://unlicense.org/>
#
for pkg in $(brew list); do
brew info $pkg
echo
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment