Skip to content

Instantly share code, notes, and snippets.

@invalidusrname
Created September 7, 2011 02:21
Show Gist options
  • Select an option

  • Save invalidusrname/1199592 to your computer and use it in GitHub Desktop.

Select an option

Save invalidusrname/1199592 to your computer and use it in GitHub Desktop.
Grab all available videos from confreaks
curl -s http://confreaks.com/events/rubyconf2012 | grep "/videos/" | cut -d '"' -f 2 | while read url; do curl -s "http://confreaks.com$url" | grep "large.mp4?" | grep -v "xtra" | cut -d '"' -f 2 >> /tmp/cf-vids.txt; done; cat /tmp/cf-vids.txt | uniq
@invalidusrname
Copy link
Copy Markdown
Author

adjust event name and preferred video size as needed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment