Does anyone know how to create a email message board? A master screen displayed on a monitor that would list 25-40 employees names on the screen and list if they had new messages.
while true; do for user in `ls /var/spool/mail/`; do if (finger $user | grep -q "New mail"); then echo $user." has new mail"; fi; done; sleep 30; clear; done
providing there is no odd stuff in your mail spool dir...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.