http://www.artemfrolov.com/articles/coloured-bash-prompt is currently blank (as in, visit in Chrome/Firefox/Opera and see just whitespace, no content). So after studying the example here, am finding that converting:
export PS1='\e[0;32m\u@\h\e[m \D{%b %d} \t $ '
which breaks, to
export PS1='\[\e[0;32m\]\u@\h\[\e[m\] \D{%b %d} \t $ '
seems to work for me (as an additional, specific example).
Separately, and slightly off-topic, but useful (for at least my reference): to upgrade the above with helpful "compressed path" and bolded-green user@host in the prompt:
export MYPS='$(echo -n "${PWD/#$HOME/~}" | awk -F "/" '"'"'{if (length($0) > 14) { if (NF>4) print $1 "/" $2 "/.../" $(NF-1) "/" $NF; else if (NF>3) print $1 "/" $2 "/.../" $NF; else print $1 "/.../" $NF; } else print $0;}'"'"')'
export PS1='\[\e[1;32m\]\u@\h\[\e[m\] \D{%b %d} \t $(eval "echo ${MYPS}")$ '
** Edit **: this PS1 assignment (the 2nd line), imo, is much easier to read:
export MYPS='$(echo -n "${PWD/#$HOME/~}" | awk -F "/" '"'"'{if (length($0) > 14) { if (NF>4) print $1 "/" $2 "/.../" $(NF-1) "/" $NF; else if (NF>3) print $1 "/" $2 "/.../" $NF; else print $1 "/.../" $NF; } else print $0;}'"'"')'
export PS1='$USER@\[$(tput bold)\]$(hostname -s)\[$(tput sgr0)\] \D{%b %d} \t $(eval "echo ${MYPS}")$ '