LoginSignup
13
9

More than 5 years have passed since last update.

MacOSでのbash-completion

Last updated at Posted at 2015-07-24

~/.ssh/config とかに書いたものがうまく補完されないなと思ったら、bash-completion がインストールされてなかった。

brewでちゃんとインストールすると、解決。

$ brew install bash-completion

ただ、~/.bash_profile で読み込ませる必要はある。

~/.bash_profile
# Bash completion
if [ -f `brew --prefix`/etc/bash_completion ]; then
  . `brew --prefix`/etc/bash_completion
fi
13
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9