欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu设置tab自动补全

程序员文章站 2024-03-21 17:32:34
...

解决方法

1、利用vi编辑器打开 /etc/bash.bashrc文件(需要root权限)

sudo vi /etc/bash.bashrc

2、找到文件中的下列代码

#enable bash completion in interactive shells
#if ! shopt -oq posix; then
#      if [-f  /usr/share/bash-completion/bash_completion ]; then
#          . /usr/share/bash-completion/bash_completion
#      elif [ -f /etc/bash_completion]; then
#           . /etc/bash_completion
#      fi
#fi

3、将注释符号#去掉,即改成

#enable bash completion in interactive shells
if ! shopt -oq posix; then
     if [-f  /usr/share/bash-completion/bash_completion ]; then
          . /usr/share/bash-completion/bash_completion
      elif [ -f /etc/bash_completion]; then
           . /etc/bash_completion
      fi
fi

4、最后 source一下 /etc/bash.bashrc即可, 即

sudo source /etc/bash.bashrc

使用

你可以apt-get install xxtab试一下



作者:信仰与初衷
链接:https://www.jianshu.com/p/90de009cb67d
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。