Skip to content

Instantly share code, notes, and snippets.

@timmow
Created November 16, 2012 12:14
Show Gist options
  • Select an option

  • Save timmow/4086836 to your computer and use it in GitHub Desktop.

Select an option

Save timmow/4086836 to your computer and use it in GitHub Desktop.
Get a list of dates on a google calendar
# download your private calendar url as xml
wget http://url/to/calendar
grep -o 'When:.*12' basic | uniq | perl -ple 's/When://' | ruby -e 'require "date"; puts STDIN.readlines.sort_by!{|x| Date.parse x}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment