-1

这对很多人来说可能很明显,但对我来说却不是。因此,要启用 bash-completion 或换句话说在 Linuks OS、Debian 或 Kali 或 Ubuntu 中自动完成或自动填充,请结合 xlde 桌面环境和 xrdp 远程连接:

root@station:~# nano /etc/profile

在文件末尾添加

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

所以它看起来像:

  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

#enable bash-completion for all
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi

保存文件,关闭终端并再次打开。

4

1 回答 1

0

您应该安装了 rpm。

bash-completion.noarch

我已经在 RHEL7 中尝试过,它对我有用。

于 2016-08-24T02:46:38.857 回答