Skip to content

Instantly share code, notes, and snippets.

@shotasenga
Created March 16, 2016 10:17
Show Gist options
  • Save shotasenga/1e7a4a41d1da4efed663 to your computer and use it in GitHub Desktop.
Save shotasenga/1e7a4a41d1da4efed663 to your computer and use it in GitHub Desktop.
show all *root* formulae from http://stackoverflow.com/a/22714023/755333
#!/bin/sh
brew deps --installed | \
awk -F'[: ]+' \
'{
packages[$1]++
for (i = 2; i <= NF; i++)
dependencies[$i]++
}
END {
for (package in packages)
if (!(package in dependencies))
print package
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment