bash-completion for gentoo和使sudo支持tab补齐

为什么要使用 bash-completion,因为有了它,几乎所有的命令你都可以尝试使用利用tab键来补齐。
如何安装呢?
1、安装必要的软件包 bash-completion,会通过依赖关系自动安装gentoo-bashcomp
sudo emerge -a bash-completion
2、添加 bash-completion 全局 USE 标记到 /etc/make.conf
sudo vim /etc/make.conf
USE="... bash-completion"
sudo emerge -uDN world
3、在/etc/bash/bashrc里面添加
[[ -f /etc/profile.d/bash-completion.sh ]] && source /etc/profile.d/bash-completion.sh
4、启用bash-completion的功能。一般的要启用base,比如sudo补齐
sudo eselect bashcomp enable base
或者
sudo bashcomp-config enable base
查看有哪一些命令支持 bash-completion ,可以用下面的命令
eselect bashcomp list
或者
bashcomp-config list


bash-completion的编写规范可以查看 gentoo development manual:Completion Files。

你可能感兴趣的:(gentoo)