From 330c1888fbf1201f5593b63107b56ee8601724d8 Mon Sep 17 00:00:00 2001 From: insaner Date: Tue, 24 Jan 2017 04:55:51 -0500 Subject: [PATCH] Update wayback_machine_downloader --- bin/wayback_machine_downloader | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/wayback_machine_downloader b/bin/wayback_machine_downloader index af75e71..1d0bb18 100755 --- a/bin/wayback_machine_downloader +++ b/bin/wayback_machine_downloader @@ -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