From f9d60d0583351109ce451e184db72c3448b64355 Mon Sep 17 00:00:00 2001 From: McModder Date: Fri, 8 Sep 2023 18:38:44 +0300 Subject: [PATCH] apply hartator/wayback-machine-downloader#235 --- bin/wayback_machine_downloader | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/wayback_machine_downloader b/bin/wayback_machine_downloader index 4fb6d3d..58362f8 100755 --- a/bin/wayback_machine_downloader +++ b/bin/wayback_machine_downloader @@ -21,7 +21,7 @@ option_parser = OptionParser.new do |opts| opts.on("-s", "--all-timestamps", "Download all snapshots/timestamps for a given website") 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 @@ -30,7 +30,7 @@ option_parser = OptionParser.new do |opts| options[:to_timestamp] = t end - opts.on("-e", "--exact-url", "Download only the url provied and not the full site") do |t| + opts.on("-e", "--exact-url", "Download only the url provided and not the full site") do |t| options[:exact_url] = t end