关于在linux下无法使用tab键补全

  • Post author:
  • Post category:linux


可能原因有两个:

1.查看使用的shell

echo $SHELL

如果不是/bin/shell

查看  ls -l /bin/sh

如果该软连接的不是/bin/shell

执行 ln -sf  /bin/bash /bin/sh

2.查看当前用户主目录下.bashrc

比如: vi /root/.bashrc

按shift+g  跳到最后一行

看一下语句是否被注释:

if [ -f /etc/bash_completion ] && ! shopt -oq posix; then

. /etc/bash_completion

fi

如果注释了,则去掉注释

保存退出后  执行  source /root/.bashrc即可

该语句是起到什么作用呢,想想就知道 ,肯定是补全的功能,没错

bash-completion就是增强bash自动补齐功能

如果文件  /etc/bash_completion存在且。。。,就执行. /etc/bash_completion



版权声明:本文为dgj8300原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。