Skip to content

Instantly share code, notes, and snippets.

@candera
Created January 22, 2012 13:35
Show Gist options
  • Save candera/1657089 to your computer and use it in GitHub Desktop.
Save candera/1657089 to your computer and use it in GitHub Desktop.
Podcast stats script
#!/bin/bash
s3cmd sync s3://thinkrelevance-podcast-logs/ .
for i in "001" "002" "003"; do
echo "Episode $i: " `grep "ThinkRelevance-$i" * | wc -l`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment