My default TERM is xterm-color. I would like it to be xterm-256color when I am working on my machine locally, but if I ssh to it I want to have it be xterm-color. How do I distinguish these two cases?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Assuming you're using Bash, in your ~/.bashrc:

if [[ $SSH_TTY ]]
then
    TERM=xterm-color
else
    TERM=xterm-256color
fi
export TERM
link|improve this answer
Thanks, exactly what I wanted! – Amadan Feb 28 '11 at 7:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.