SoFunction
Updated on 2025-03-10

Analyze the parameters of the ubuntu tab key that cannot automatically complete the command

/etc/ has these lines

#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

Remove comments

#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/ is OK

The above is the parameters of the ubuntu tab key that I introduced to you that cannot automatically complete the command. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. Thank you very much for your support for my website!