Skip to content

Instantly share code, notes, and snippets.

View puttputt's full-sized avatar

kyle smyth puttputt

View GitHub Profile
#opens a file, outputs image url's to it
file = File.open("url.txt", "r+")
for i in (582...660)
file.puts "http://www.domain.com/" << i.to_s() << ".png"
end
file.close