Skip to content

Instantly share code, notes, and snippets.

@bitjockey42
Created July 1, 2016 16:33
Show Gist options
  • Save bitjockey42/f8e755c30f670be19287419ea2f5eb36 to your computer and use it in GitHub Desktop.
Save bitjockey42/f8e755c30f670be19287419ea2f5eb36 to your computer and use it in GitHub Desktop.
Get list of installed homebrew packages with their install options
#!/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