Created
August 7, 2015 11:41
-
-
Save adamamyl/c8514ae427df9cbeffa4 to your computer and use it in GitHub Desktop.
for a given email address, find the lists they're subscribed to, and display the dates of the last post for each list
This file contains hidden or 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
| find_member githubgists@no2id.net | while read L | |
| do | |
| bin/withlist -r last_post ${L} 2>&1 | grep Last | |
| done | column -t | awk '{print $9, $6, $7, $1}' | sort -h | column -t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment