美文网首页
ubuntu添加自动补全功能

ubuntu添加自动补全功能

作者: 一丝风L | 来源:发表于2018-08-26 15:23 被阅读0次

    1、安装bash-completion

    sudo apt-get install bash-completion

    2、编辑~/.bashrc 文件

    添加如下内容:

    if  [ -f /etc/bash_completion ]; then

    . /etc/bash_completion

    fi

    3、使其立即生效

    source ~/.bashrc

    相关文章

      网友评论

          本文标题:ubuntu添加自动补全功能

          本文链接:https://www.haomeiwen.com/subject/aceoiftx.html