-
linux环境配置分类的最新文章
-
热门文章
-
热评好文
-
最新评论
-
qq581015c967a40:fdsaf
-
qq581015c967a40:哈哈哈
-
qq581015c967a40:fdsfa
-
最新文章
-
目录
-
/etc/bash.bashrc 里面有这几行语句
#enable bash completion in interactive shells
# if ! shopt -oq posix; then
# if [ -f /usr/share/bash-completion/bash_completion ]; then
# . /usr/share/bash-completion/bash_completion
# elif [ -f /etc/bash_completion ]; then
# . /etc/bash_completion
# fi
# fi
去掉注释
#enable bash completion in interactive shells
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
. /etc/bash.bashrc就ok了
0
收藏
Ctrl+Enter 发布
发布
取消