Xref: utzoo comp.unix.programmer:624 comp.unix.shell:1026 comp.unix.questions:27365 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!uoft02.utoledo.edu!desire.wright.edu!anagram From: anagram@desire.wright.edu (Sh'r'ldana) Newsgroups: comp.unix.programmer,comp.unix.shell,comp.unix.questions Subject: Re: how to check mail remotely : Summary Message-ID: <1990Dec4.145250.1969@desire.wright.edu> Date: 4 Dec 90 19:52:50 GMT References: <2517@trlluna.trl.oz> Organization: University Computing Services, Wright State University Lines: 20 > One way is: 'rsh host ls -l /usr/spool/mail/myname' > This will give you a listing of the directory. It would be nice to do: > > /usr/spool/mail/ > so you can just ftp that file, if it exists, then you not only > find out about new mail, you can read it. I do that with The ftp is not really so good of any idea. Depending on size and such, it could take a long time. Also, the ls is kind of slow. What I found works better (if supported) is to use the from command. In otherwords: rsh host from this is almost immediate, instead of relatively slow like the ls, and gives the added benefit of telling you who the messages are from in case you need to reply to some specific messages and want to let all others wait. sh'r