문제

I've sent out a newsletter and am watching now the inbox of the bounced mails. I'd love to grep all mails in the mail user directory on the mail server for the email addresses. What I fail to find out is how I can grep for anything between "<" and ">" as most of the bounce mails have a line like this:

<some_user@gmail.com>: host gmail-smtp-in.l.google.com[74.125.136.27] 

Any help on learning grep by this example greatly appreciated.

Thanks!

도움이 되었습니까?

해결책

This can be of help:

grep '<[^>]*@[^>]*>' input
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top