04-25-2020, 01:19 AM
There is a shell variable PROMPT_COMMAND that is interfering with all of the normal means of setting the bash shell prompt. The following in your .bashrc should fix it.
unset PROMPT_COMMAND
PS1=whatever:
unset PROMPT_COMMAND
PS1=whatever: