projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
mod fortune
[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