in reply to Re: guidance with a realtime log reader
in thread guidance with a realtime log reader
But I have to start it with a no hangup script#!/bin/bash string="connection_input: conn=11" tail -n 0 -F /var/log/ldap.log | \ while read LINE do echo "$LINE" | grep -q $string if [ $? = 0 ] then echo -e "$string found on $HOSTNAME" | mail -s "LDAP authentication on + $(hostname)" teamsupport@yourdomain.com fi done
#!/bin/bash nohup ./ldap_log_reader.sh 0<&- &>/dev/null &
|
|---|