first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / email / dump_email_headers.sh
1 #!/bin/bash
2
3 export OUTF=$HOME/email_headers.txt
4
5 for i in $(find . -type f); do 
6   echo "==== $i ====" >>$OUTF
7   grep "^From " $i >>$OUTF
8   echo >>$OUTF
9 done
10
11