Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Last active October 24, 2022 14:09
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 pbalduino/622333 to your computer and use it in GitHub Desktop.
Save pbalduino/622333 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
require 'date'
start = Date.parse("2000-01-17")
(start..Date.today).each do |id|
url = "https://sinfest.xyz/btphp/comics/#{id.to_s}.gif"
puts url
system("wget #{url} -q")
end
@AlbericC
Copy link

For your information, a recent update to the sinfest website changed the base url to http://www.sinfest.net/btphp/comics/

@pbalduino
Copy link
Author

For your information, a recent update to the sinfest website changed the base url to http://www.sinfest.net/btphp/comics/

Thank you

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