Update wayback_machine_downloader

This commit is contained in:
insaner 2017-01-24 04:55:51 -05:00 committed by GitHub
parent 63941f99dd
commit 330c1888fb

View File

@ -18,6 +18,10 @@ option_parser = OptionParser.new do |opts|
options[:directory] = t
end
opts.on("-s", "--all-timestamps", "Download all snapshots (ie. all timestamps)") do |t|
options[:all_timestamps] = true
end
opts.on("-f", "--from TIMESTAMP", Integer, "Only files on or after timestamp supplied (ie. 20060716231334)") do |t|
options[:from_timestamp] = t
end