> tail -f /var/log/pfsense | egrep -e '\.25\:' -e '\.465\:' -e '\.587\:' > | grep -v '192\.168\.0\.71'
Just a thought, in the final grep, remove the back slashes, and add -F to the flags. -F should turn off the regex matching, therefore do simple string match and not interpret the periods as wild matches. Of course, the inverted grep you posted there matches every entry in your example. -- Steven Critchfield [email protected] -- -- You received this message because you are subscribed to the Google Groups "NLUG" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nlug-talk?hl=en --- You received this message because you are subscribed to the Google Groups "NLUG" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
