Post History
Brew's deps command might help: brew deps --installed will list out top-level packages and their installed dependencies. Note that some of the top-level packages might be dependencies for other t...
Answer
#4: Post edited
- Brew's `deps` command might help:
`brew deps --installed` will list out top-level packages and their installed dependencies.- Example:
- ```
- $ brew deps --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
- ...
- $
- ```
- `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- ```
- $ brew deps --tree --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl
- |_docbook
- fontconfig
- |_freetype
- |_libpng
- ...
- $
- ```
- Brew's `deps` command might help:
- `brew deps --installed` will list out top-level packages and their installed dependencies. Note that some of the top-level packages might be dependencies for other top-level packages. Still, if you were to do a fresh install of all of the top-level packages, I think Brew will also install all the dependencies and you should have the same set of packages as before.
- Example:
- ```
- $ brew deps --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
- ...
- $
- ```
- `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- ```
- $ brew deps --tree --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl
- |_docbook
- fontconfig
- |_freetype
- |_libpng
- ...
- $
- ```
#3: Post edited
- Brew's `deps` command might help:
- `brew deps --installed` will list out top-level packages and their installed dependencies.
- Example:
- ```
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
- ```
- `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- ```
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl
- |_docbook
- fontconfig
- |_freetype
- |_libpng
- ```
- Brew's `deps` command might help:
- `brew deps --installed` will list out top-level packages and their installed dependencies.
- Example:
- ```
- $ brew deps --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
- ...
- $
- ```
- `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- ```
- $ brew deps --tree --installed
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl
- |_docbook
- fontconfig
- |_freetype
- |_libpng
- ...
- $
- ```
#2: Post edited
- Brew's `deps` command might help:
- `brew deps --installed` will list out top-level packages and their installed dependencies.
- Example:
`/* Some top-level packages without dependencies */- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
``brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- Brew's `deps` command might help:
- `brew deps --installed` will list out top-level packages and their installed dependencies.
- Example:
- ```
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl: docbook
- fontconfig: freetype
- freetype: libpng
- ```
- `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.
- ```
- /* Some top-level packages without dependencies */
- aspell
- bash
- docbook
- /* Some top-level packages with dependencies */.
- docbook-xsl
- |_docbook
- fontconfig
- |_freetype
- |_libpng
- ```
#1: Initial revision
Brew's `deps` command might help: `brew deps --installed` will list out top-level packages and their installed dependencies. Example: `/* Some top-level packages without dependencies */ aspell bash docbook /* Some top-level packages with dependencies */. docbook-xsl: docbook fontconfig: freetype freetype: libpng ` `brew deps --tree --installed` will do the same but the output will be in a tree display which can be helpful too.