Skip to content

Instantly share code, notes, and snippets.

@adamamyl
Created August 7, 2015 11:41
Show Gist options
  • Select an option

  • Save adamamyl/c8514ae427df9cbeffa4 to your computer and use it in GitHub Desktop.

Select an option

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
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