我可以为新的apt命令启用bash-completion吗?


20

新的apt命令,目前在Ubuntu 14.04以来,似乎是之间的功能一个真正有用的交集apt-getapt-cache,但当前版本的bash-completion不知道它...这使得它成为很多很难使用。

有没有一种快速的方法可以将此功能添加到Bash中以使apt命令易于使用?


Answers:


26

这是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!)


8
打开一个错误并将其提交为补丁!
Jorge Castro 2014年

您对如何与该答案一起使用有任何想法zsh吗?
Exeleration-G 2014年

关于在启动板上“我也”在哪里?
Mateo

1

为什么不使用原始的 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,这样您就不会同时加载两个文件。


我没想到这一点,但他们似乎还没有适当完成
Oli

1
@Oli好吧,我想他们是。有文件aptitudeapt-getapt-cache恰当的完成是什么意思?
亚当·里奇科夫斯基

3
根据我的开场白,apt是Trusty中一个全新的(ish)命令。它具有一些apt-get,一些apt-cache ...所有这些都在一个地方有点额外的繁荣。
奥利(Oli)

@Oli哦,你是对的!我不知道 而且-bash-completion到目前为止还不支持它。幸运的是,编写一个插件并不难,因此您可以期待一个。有可能使用我的脚本的人可能会是第一个使用它的人。
亚当·里奇科夫斯基
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.