1
0

More than 3 years have passed since last update.

AWS CLIのコマンド補完する設定

Posted at

Zshに設定する

パスを確認する

$ which aws_completer 
/usr/local/bin/aws_completer

.zshrcに以下追加する

source '/usr/local/bin/aws_zsh_completer.sh'

.zshrcの内容を反映する。

source ~/.zshrc

Bashに設定する

パスを確認する。

$ which aws_bash_completer
/usr/local/bin/aws_bash_completer

.bashrcに以下追加する。

complete -C '/usr/local/aws/bin/aws_completer' aws

.bashrcの内容を反映する。

source ~/.bashrc
1
0
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
1
0