0
1

Linuxで、AWC-Cliのコマンド補完を設定する

Posted at

AWSコンプリータがインストールされていることを確認します。

which aws_completer
/usr/local/bin/aws_completer

 
.bash_profile、.profile、または .bash_loginに以下を追加します。

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

※ 「complete」はbashでコマンドラインの「補完」を行う方法を指定するコマンドです。

 
以下のコマンドを実行し、.bash_profile、.profile、または .bash_loginの設定を反映します。

source .bashrc

以上です。

0
1
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
0
1