答え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
これは永久に問題を解決します。