答案1
unset PROMPT_COMMAND
echo unset PROMPT_COMMAND | sudo tee -a /etc/bash.bashrc
if [[ -f ~/.bash_profile ]]; then
echo unset PROMPT_COMMAND | tee -a ~/.bash_profile
fi
这应该可以永久修复它。
unset PROMPT_COMMAND
echo unset PROMPT_COMMAND | sudo tee -a /etc/bash.bashrc
if [[ -f ~/.bash_profile ]]; then
echo unset PROMPT_COMMAND | tee -a ~/.bash_profile
fi
这应该可以永久修复它。