I was curious if anyone new a command like tail or top to constantly monitor a service as it runs. I'm trying to watch sendmail currently to see who is connecting to it, but would like to have it a little more dynamic than just repeatedly typing ps aux | grep send
is there a good way to constantly keep this running? Thanks guys n' gals
Sorry guys, I just realized I'm posting on serverfault not superuser, huge apologies for "wrong forum"
tail -f /var/log/mail.log | fgrep send– mailq Dec 5 '11 at 23:22