Skip to content

Instantly share code, notes, and snippets.

@elliotcm
Created May 1, 2012 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elliotcm/2568455 to your computer and use it in GitHub Desktop.
Save elliotcm/2568455 to your computer and use it in GitHub Desktop.
Fetch some clock videos
(0..23).each do |hour|
(0..59).step(5) do |minute|
hour = hour.to_s.rjust(2, '0')
minute = minute.to_s.rjust(2, '0')
system "wget -c http://176.9.156.38/big_#{hour}-#{minute}.mp4"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment