说明:
在shell中,如果命令前不加 "sudo" 时,按 <Tab>键可以自动补全
如果加上 "sudo",无法自动补全。
解决方法:
编辑 "~/.bashrc" 文件,添加以下代码:
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
Linux下给普通用户添加Sudo权限:http://www.linuxdiyf.com/linux/280.html
自动添加sudo权限脚本:http://www.linuxdiyf.com/linux/1476.html
CentOS 6.6命令行实现自动补全:http://www.linuxdiyf.com/linux/11697.html