在Linux中,当我们输入命令的时候,按 TAB键会有自动补全的功能,然而有些命令不会提示,而我们又忘记了怎么拼写,

比如查看防火墙开启的状态命令如下:

systemctl status firewalld.service 

firewalld 我们忘记了怎么拼写,这时候按 TAB 键就没有提示

[root@centos7 ~]# systemctl start f

这个时候我们可以安装自动代码提示或自动补全的插件

yum install bash-completion -y

bash-completion-extras 是 bash-completion 的增强版 

yum install bash-completion-extras -y

这个时候,我们去查看防火墙状态时,会有提示

[root@centos7 ~]# systemctl status f
firewalld.service  fstrim.service     fstrim.timer  

Logo

更多推荐