以前、「Python版AWSコマンドラインツールをCentOS6で使ってみた」の記事で
Python版AWSコマンドラインツールをインストールした時に、Command Completion(complete -C
aws_completer aws)を知り、調査したところyumリポジトリで見つけることができました。

# yum -y install bash-completion

保管できるコマンドは下記で確認できます。

# ls -1 /etc/bash_completion.d/
...
chkconfig
...
git
...
openssl

perl
...
postfix
...
service
...
ssh
...
yum.bash

主なコマンドの補完具合を確認してみました。

○chkconfig

# chkconfig cloud-
cloud-config cloud-final cloud-init cloud-init-local

○git

# git cocommit   config

○openssl

# openssl md
md2 md4 md5

○postfix

# postfix st
start status stop

○service

# service cloud-
cloud-config cloud-final cloud-init cloud-init-local

○ssh

# ssh localhost
localhost localhost.localdomain

○yum

# yum -y in
info install

こちらの記事はなかの人(suz-lab)監修のもと掲載しています。
元記事は、こちら