Last active
October 24, 2022 14:09
-
-
Save pbalduino/622333 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
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
For your information, a recent update to the sinfest website changed the base url to http://www.sinfest.net/btphp/comics/