在安裝完ubuntu後,發現在使用命令列打字時,按tab後後面不會自動補齊命令,也沒有可用的命令提示時
可使用管理員身分開啟/etc/bash.bashrc這個檔案
在下面找到
enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
把前面的註解(#)拿掉變成
enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
儲存後重新啟動就可以生效了