Created
December 10, 2013 17:49
-
-
Save vrillusions/7894923 to your computer and use it in GitHub Desktop.
Show detailed information for all installed homebrew packages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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