当前位置: 首页>>技术教程>>正文


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

, ,

问题描述

新的 apt 命令,自 14.04 起出现在 Ubuntu 中,似乎是 apt-getapt-cache 之间功能的一个非常有用的交集,但 bash-completion 的当前版本不知道它……这使得它更难使用。

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

最佳方法

这是 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,我很想从头开始!)

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12553.html,未经允许,请勿转载。