Created
July 1, 2016 16:33
-
-
Save bitjockey42/f8e755c30f670be19287419ea2f5eb36 to your computer and use it in GitHub Desktop.
Get list of installed homebrew packages with their install options
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 | |
for i in $(brew list); do echo "$i" $(brew info $i|cat|grep "with:"); done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment