0%

linux:解决终端命令行无法自动补全

操作步骤

1、安装命令补全

1
apt-get install bash-completion

2、在 /etc/profile 添加

1
2
3
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi

3、刷新 /etc/profile 配置文件,使其生效

1
# source /etc/profile
  • 本文标题:linux:解决终端命令行无法自动补全
  • 本文作者: LinG218
  • 本文链接: https://www.ling218.cn/archives/7d602a45.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!