If I execute either of these commands from a command prompt, I get what I want, but from a bash script, it doesn't work:
PS1="\e[0;34m${title} $ \e[m" # Prompt text Blue
export PS1="\e[0;34m${title} $ \e[m" # Prompt text Blue
e.g.,
I can change the window title from a script but not the command prompt.
How can this be done from a bash script?
