I need to extract the From field from a mailbox. I using the following mess8222 command supplied to me by Jeremy Kitchen.
find Maildir/{cur,new}/ -type f | while read i ; do 822field from < $i done
The command writes the output to the screen in the following format. Sam E Iger <sei3000@xxxxxxxxx>
Is there anyway to have the output leave out the Greater Then and Less Then symbols. Also can it be piped to a txt file.
I have raad MAN pages but they very sparse on content.
Thanks