[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: using bash to check mail
From: |
Karl Kleinpaste |
Subject: |
Re: using bash to check mail |
Date: |
Wed, 08 Aug 2001 08:32:40 -0400 |
User-agent: |
Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Artificial Intelligence) |
atrak@eden.rutgers.edu (Alak Trakru) writes:
> i tried using MAIL and MAILPATH but they don't seem to work.
"Turn on your computer first."
(That's a sarcastic way of saying, "You didn't give any actual
information in your report." _How_ didn't they work? You'd have to
start by saying how you used them, what the values of the variables
were, and so forth.)
> # /bin/mail -E
> # switch ( $status )
> # case 0:
> # echo "there's new mail."
> # breaksw;
> # case 2:
> # echo "no new mail."
> # breaksw;
> # endsw
/bin/mail -E
case "$?" in
0) echo "there's new mail." ;;
2) echo "no new mail." ;;
esac