From 8aecf874deaccb6e4ad9d47e8dd23e04abd3b7b4 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 3 Feb 2020 20:21:27 -0500 Subject: [PATCH] Updated Usage (markdown) --- Usage.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Usage.md b/Usage.md index 3aac5e9..1150ef1 100644 --- a/Usage.md +++ b/Usage.md @@ -88,12 +88,19 @@ Passing a URL as an argument here does not archive the specified URL, it downloa --- ### Import list of links from browser history + +This uses the `archivebox-export-browser-history` helper script to parse your browser's SQLite history database for URLs. +Specify the type of the browser as the first argument, and optionally the path to the SQLite history file as the second argument. + ```bash ./bin/archivebox-export-browser-history --chrome ./archive output/sources/chrome_history.json # or ./bin/archivebox-export-browser-history --firefox ./archive output/sources/firefox_history.json +# or +./bin/archivebox-export-browser-history --safari +./archive output/sources/safari_history.json ``` ---