On Fri, Nov 22, 2002 at 09:46:20AM -0500, Daniel Higgins wrote:
> ok i finally got around to doing some checks. with a stuck mailbox i did a
> 
> grep '\r\n' * and found quite a few messages with that string, however they
> are mostly in headers... and seems to all come from hotmail and yahoo
> groups.

Hmm, grep '\r\n' will search for the string "rn", for example:

$ grep '\r\n' /etc/passwd
toor:*:0:0:Bourne-again Superuser:/root:
              ^^

What I meant was, lines which end with a CR (ascii 13) LF (ascii 10)
sequence. They should normally only end with LF (ascii 10)

In hex look for 0D 0A

Or try this:

perl -ne 'print "$_" if /\r\n$/' *

Regards,

Brian.


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to