in reply to Re: TERM problems
in thread TERM problems

Hotshot, I had the same problem and discovered it was due to using colors in my bash prompt. I fixed it with a simple if check:
if [ $TERM != "dumb" ];then export PS1=pretty_color_prompt fi
Worked like a champ. Keep in mind the "clear" call is just a wrapper to tput. So check those dotfiles for any clear commands as well.