标签类目:bash_completion

Debian/Ubuntu:让apt-get install 有自动补齐功能

分类:Ubuntu分类:Debian在 ~/.bashrc 里加入以下几行就行了。

# enable programmable completion features
if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

返回顶部