Script question

Patrick Hess patrickhess at gmx.net
Mon Jun 15 00:32:58 UTC 2015


Polytropon wrote:
> Or if you want to omit the grep call:
> 
> awk '/spam=YES/ {print $11}' /var/log/maillog | sort | uniq | sed -e 's/^.*=//' > /tmp/spam-ip.txt
> 
> And then continue:
> 
> cat /tmp/spam-ip.txt >> /usr/samba/mail/envelope
> cat /tmp/spam-ip.txt | mail -s "SPAM IPs...." us.navy at outlook.com
> 
> Finally, you can easily remove /tmp/spam-ip.txt.

You could even take this one step further and eliminate the need for
a temporary file altogether by making use of tee(1):

    awk '/spam=YES/ {print $11}' /var/log/maillog |
    sort |
    uniq |
    sed -e 's/^.*=//' |
    tee -a /usr/samba/mail/envelope |
    mail -s "SPAM IPs...." us.navy at outlook.com

Patrick


More information about the freebsd-questions mailing list