新しい apt
14.04以降Ubuntuに存在するコマンドは、apt-get
とapt-cache
の機能の非常に便利な共通部分のようですが、bash-completion
の現在のバージョンはそうではありません知らない...これにより、lotが使いにくくなります。
apt
コマンドを使いやすくするために、この機能をBashに追加する簡単な方法はありますか?
これは、apt
ではなく、bash-complete
パッケージの省略です。まだ完成していないように思えるので、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
が文書化されたら、フレッシュから始めたいと思いますが!)
originalbash-completion を使用しないのはなぜですか?
このスクリプトを試してください。 ~/tmp/bash-completion
に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をアンインストールして、両方を同時にロードしないようにします。