回答:
これはbash-complete
パッケージの省略であり、ではありませんapt
。まだ完成していないように思えるので、私はapt
コマンドのためにできることをまとめました(これは、これまでに存在した最高の文書化されたコマンドではありません!)
以下は、既存のapt-get
補完からの適応です(要素を削除し、apt-cache
補完からビットを追加します)。以下を実行sudoedit /usr/share/bash-completion/completions/apt
して貼り付けます。
# Debian apt(8) completion -*- shell-script -*-
_apt()
{
local cur prev words cword
_init_completion || return
local special i
for (( i=0; i < ${#words[@]}-1; i++ )); do
if [[ ${words[i]} == @(list|search|show|update|install|remove|upgrade|full-upgrade|edit-sources|dist-upgrade|purge) ]]; then
special=${words[i]}
fi
done
if [[ -n $special ]]; then
case $special in
remove|purge)
if [[ -f /etc/debian_version ]]; then
# Debian system
COMPREPLY=( $( \
_xfunc dpkg _comp_dpkg_installed_packages $cur ) )
else
# assume RPM based
_xfunc rpm _rpm_installed_packages
fi
return 0
;;
*)
COMPREPLY=( $( apt-cache --no-generate pkgnames "$cur" \
2> /dev/null ) )
return 0
;;
esac
fi
case $prev in
-c|--config-file)
_filedir
return 0
;;
-t|--target-release|--default-release)
COMPREPLY=( $( apt-cache policy | \
command grep "release.o=Debian,a=$cur" | \
sed -e "s/.*a=\(\w*\).*/\1/" | uniq 2> /dev/null) )
return 0
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-d -f -h -v -m -q -s -y -u -t -b -c -o
--download-only --fix-broken --help --version --ignore-missing
--fix-missing --no-download --quiet --simulate --just-print
--dry-run --recon --no-act --yes --assume-yes --show-upgraded
--only-source --compile --build --ignore-hold --target-release
--no-upgrade --force-yes --print-uris --purge --reinstall
--list-cleanup --default-release --trivial-only --no-remove
--diff-only --no-install-recommends --tar-only --config-file
--option --auto-remove' -- "$cur" ) )
else
COMPREPLY=( $( compgen -W 'list search show update install
remove upgrade full-upgrade edit-sources dist-upgrade
purge' -- "$cur" ) )
fi
return 0
} &&
complete -F _apt apt
# ex: ts=4 sw=4 et filetype=sh
次に、実行source ~/.bashrc
して完了をロードします。その後、apt show firef
+ Tabが完了するはずです。
これにより、もはや存在しないオプションが提供される場合があります。メインコマンド(時間の経過とともに変更される可能性があります)を釘付けにしたと思いますが、少なくとも一般的なコマンドについては役立ちますlist
search
show
update
install
remove
upgrade
full-upgrade
edit-sources
dist-upgrade
purge
。
明らかに、bash-completionのメンテナーが上記のことを知りたい場合は、GPLの下で歓迎されます(apt
文書化されたばかりの新鮮な状態から始めたいと思いますが!)。
zsh
か?
元の bash-completionを使用してみませんか?
このスクリプトを試してください。にbash-completionをダウンロードしてインストールし~/tmp/bash-completion
ます。
#!/bin/bash
echo -en "\e]2;Updating bash completion...\a"
katalog="~/tmp/bash-completion"
if [ ! -d "$katalog" ]; then
mkdir -p $katalog
cd $katalog
cd ..
git clone git://git.debian.org/git/bash-completion/bash-completion.git
cd $katalog
autoreconf -i
./configure
make
sudo make install
else
cd $katalog
if [ `git log --pretty=%H ...refs/heads/master^` != `git ls-remote origin -h refs/heads/master |cut -f1` ]; then
git pull
autoreconf -i
./configure
make
sudo make install
else
echo "Bash-completion is already up to date!"
fi
fi
コマンド. ~/tmp/bash-completion/bash_completion.sh
で使用を開始します。このコマンドは、~/.bashrc
ファイルに入れることができます。または、もっと良いのは、/etc/profile.d/
ディレクトリ内のファイルにシンボリックリンクすることです。元のbash-completionをアンインストールして、両方を同時にロードしないようにします。
aptitude
、apt-get
とapt-cache
。適切な補完とはどういう意味ですか?
apt
と、Trustyにある真新しいコマンドです。apt-getの一部、apt-cacheの一部があります...すべてが1か所に余分な繁栄が少しあります。