位置:海鸟网 > IT > linux/Unix >

CentOS中使用shell的命令补全

作者:小恶魔灬

CentOS中使用shell的命令补全
 
 
 
习惯debian的用户都知道shell中的自动补全功能非常实用,其中在CentOS中也可以有同样的功能。
 
 
 
只需要安装 bash-completion 包即可。
 
 
 
rpm -ivh
 

 
 
 
vim /etc/bashrc
 
 
 
[plain] 
 
if [ -f /etc/bash_completion ]; then  
 
        . /etc/bash_completion  
 
fi  
 
 
 
保存。
 
 
 
[plain] 
 
source /etc/bashrc  
 
 
 
重新读取bashrc文件。
 
 
 
所有用户都可以有shell自动补全功能了。