Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!sunybcs!boulder!hao!oddjob!gargoyle!chris From: chris@gargoyle.UChicago.EDU (Chris Johnston) Newsgroups: comp.unix.questions Subject: Re: Problem with rcp/rsh/rdump Message-ID: <759@gargoyle.UChicago.EDU> Date: Thu, 8-Oct-87 16:47:03 EDT Article-I.D.: gargoyle.759 Posted: Thu Oct 8 16:47:03 1987 Date-Received: Sun, 11-Oct-87 10:04:39 EDT References: <441@nysernic> Reply-To: chris@gargoyle.uchicago.edu.UUCP (Chris Johnston) Organization: U of Chicago - Computer Science Lines: 26 Keywords: Where are you? In article <441@nysernic> weltyc@nic.nyser.net (Christopher A. Welty) writes: > > We are having an odd problem with the above "remote" commands >Attempting to use >them results in a "Where are you?" error message, followed by a swift >exit from the program involved. you have the command 'biff y' in your .cshrc file. Move it to your .login file. Also you should test to see if you are in an interactive shell before executing parts of your .cshrc file The follwing is part of my .cshrc file... set path=(/usr/ucb /bin /usr/bin /usr/hosts /local/bin /etc .) # # Check to see if this is an interactive shell... if ($?prompt) then echo -n set history=50 set prompt="`whoami`@`hostname | sed 's/\..*//'` ! " alias rn 'rn -S' endif cj