admin/bin/newmail.sh

13 lines
260 B
Bash
Raw Normal View History

2019-03-13 08:49:32 +00:00
#!/usr/local/bin/bash
NewMail(){
NEWMAIL=$(mailx &)
UNREAD=$(echo $NEWMAIL |grep -o 'messages.*new' | cut -f2 -d" ")
}
NewMail # call NewMail function
UNREAD=${UNREAD/>/}
if [ -n "$UNREAD" ]; then
echo "`whoami` you have $UNREAD new mail(s) "
fi