home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / os / linux / 16973 < prev    next >
Encoding:
Internet Message Format  |  1992-11-17  |  649 b 

  1. Path: sparky!uunet!caen!uwm.edu!uwm.edu!usenet
  2. From: rick@ee.uwm.edu (Rick Miller, Linux Device Registrar)
  3. Newsgroups: comp.os.linux
  4. Subject: H.J.Lu's distribution and ELM in MailPak
  5. Date: 17 Nov 1992 15:50:51 GMT
  6. Organization: Just me.
  7. Lines: 10
  8. Message-ID: <1eb4crINN52e@uwm.edu>
  9. NNTP-Posting-Host: 129.89.2.33
  10. Summary: Just a minor glitch in /.bash_profile
  11.  
  12. I compiled the mailpak's ELM last night, and couldn't get it to work...
  13. until I found the bug in the /.bash_profile...
  14.  
  15. MAIL=/usr/spool/mail/$USER    <--The problem is that $USER is undefined.
  16.  
  17. Adding the line:
  18.  
  19.     USER=`whoami`
  20.  
  21. *BEFORE* the "MAIL" variable is set solves the problem nicely.
  22.