From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5087 invoked from network); 9 Oct 1997 18:58:04 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 9 Oct 1997 18:58:04 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id OAA03997; Thu, 9 Oct 1997 14:52:17 -0400 (EDT) Resent-Date: Thu, 9 Oct 1997 14:52:17 -0400 (EDT) To: zsh-workers@math.gatech.edu Sender: monnier@TEQUILA.SYSTEMSZ.CS.YALE.EDU From: Stefan Monnier Newsgroups: lists.zsh.workers Subject: Re: ideas, questions, and bugs (?) References: <199710082011.UAA00314@dal-tsa6-26.cyberramp.net> Date: 09 Oct 1997 14:52:59 -0400 Message-ID: <5ln2kiepkk.fsf@tequila.systemsz.cs.yale.edu> X-Newsreader: Gnus v5.5/Emacs 20.2 Path: tequila.systemsz.cs.yale.edu NNTP-Posting-Host: tequila.systemsz.cs.yale.edu Resent-Message-ID: <"91iq81.0.O-.XVIFq"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/3575 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Tim Writer writes: > rsh thathost xterm -display thishost:0.0 > The shell running inside xterm is interactive, but it's not a login shell, so > it won't have EDITOR, HISTFILE, etc. which is probably not what you want. Of Common problem. Also happens with most XDM configurations. I end up also putting everything in zshenv protected by a test: if [[ -z $MyEnv ]]; then export PATH=blablabla export CVS_RSH=ssh ... fi my zlogin is always empty because I happen not to need to start anything when logging in. Stefan