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

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

新的aptapt-get命令,自 Ubuntu 14.04 开始出现,似乎是和之间真正有用的功能交集,apt-cache但当前版本bash-completion不知道它……这使得它成为一个很多更难使用。

有没有一种快捷方法可以向 Bash 添加此功能以使apt命令易于使用?

答案1

这是包中的遗漏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

apt显然,如果 bash-completion 维护者想要获得上述内容,欢迎您在 GPL 下使用它(尽管一旦记录下来,我很想从头开始!)

答案2

为什么不使用原来的bash 完成

尝试这个脚本。它将下载并安装 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,这样您就不会同时加载两者。

相关内容