- インストールした理由がわからないのもありますが、一覧を出してみます。
brew.sh
# !/bin/sh -eu
for i in `brew list`; do
echo "1. "`brew info "${i}" | grep "${i}:"`
done
インストール一覧
- autoconf: stable 2.69 (bottled)
- bash-completion: stable 1.3 (bottled)
- clang-format: stable 2017-11-14 (bottled), HEAD
- fswatch: stable 1.11.2 (bottled)
- gcc: stable 7.2.0 (bottled), HEAD
- gdbm: stable 1.14.1 (bottled)
- gettext: stable 0.19.8.1 (bottled) [keg-only]
- git: stable 2.15.1 (bottled), HEAD
- gmp: stable 6.1.2 (bottled)
- gnu-tar: stable 1.30 (bottled)
- htop: stable 2.0.2, HEAD
- isl: stable 0.18 (bottled), HEAD
- libevent: stable 2.1.8 (bottled)
- libidn2: stable 2.0.4 (bottled), HEAD
- libmpc: stable 1.1.0 (bottled)
- libunistring: stable 0.9.8 (bottled)
- libyaml: stable 0.1.7 (bottled)
- maven: stable 3.5.2
- mpfr: stable 4.0.0 (bottled)
- ncurses: stable 6.0 (bottled) [keg-only]
- nkf: stable 2.1.4 (bottled)
- openssl: stable 1.0.2n (bottled) [keg-only]
- openssl@1.1: stable 1.1.0g (bottled) [keg-only]
- pcre: stable 8.41 (bottled), HEAD
- perl: stable 5.26.1 (bottled), HEAD
- pkg-config: stable 0.29.2 (bottled)
- postgresql: stable 10.1 (bottled), HEAD
- pyenv: stable 1.2.1 (bottled), HEAD
- python: stable 2.7.14 (bottled), HEAD
- readline: stable 7.0.3 (bottled) [keg-only]
- redis: stable 4.0.6 (bottled), HEAD
- ruby: stable 2.5.0 (bottled), HEAD
- sqlite: stable 3.21.0 (bottled) [keg-only]
- tree: stable 1.7.0 (bottled)
- uncrustify: stable 0.66.1 (bottled), HEAD
- vim: stable 8.0.1400 (bottled), HEAD
- wget: stable 1.19.2 (bottled), HEAD
- zsh: stable 5.4.2 (bottled), HEAD
- zsh-completions: stable 0.27.0, HEAD
What does "keg-only" mean?
- FAQ に記載がありました。
It means the formula is installed only into the Cellar; it is not linked
into/usr/local
. This means most tools will not find it. We don’t do
this for stupid reasons. You can still link in the formula if you need
to withbrew link
.
- kegとはビール樽という意味ですが、ここではインストールだけされていて/usr/localにはシンボリックリンクをつけてないパッケージのこと。…だそうです、コマンドではなくライブラリがこれにあたるようですね。