Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I distribute my dotfiles on all my machines. I want to put something like the following in my .zshrc

# Autoload screen if we aren't in it.
if [[ $STY = '' ]] then screen -xR; fi

Which I got from What's in your .zshrc?

But I only want to attach to screen when I ssh to remote hosts... not if I'm on my local machine. Is there an environment variable I can test to see if this is an SSH session or localhost console?

share|improve this question

1 Answer

up vote 1 down vote accepted

Right now I'm going to test the $SSH_TTY variable which seems to be reliable from the few hosts I've tried:

if [[ $STY = '' && $SSH_TTY != '' ]] then screen -xR; fi
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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