Created
December 1, 2013 19:46
-
-
Save garybernhardt/7739887 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inbox_blobs() { | |
git ls-tree -r master | grep 'INBOX' | awk '{print $3}' | sort | |
} | |
diff <(cd ../Gmail && inbox_blobs) <(inbox_blobs) | grep '<\|>' | while read marker hash; do | |
echo "$marker $(git show $hash | grep -m 1 '^Subject:')" | |
done | sort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
< Subject: Re: LLC intake form | |
< Subject: Mail dates are wrong after IMAP sync [Ticket Id: 401841] | |
> Subject: IMAP Migration report | |
> Subject: Welcome to NDC London - 4-6 December |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment