From bd8efee33fd85e40d1f02e6a658b4afc746289ee Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 23 Jan 2019 02:54:21 -0500 Subject: [PATCH] Updated Usage (markdown) --- Usage.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/Usage.md b/Usage.md index a6106c2..e526dc7 100644 --- a/Usage.md +++ b/Usage.md @@ -37,4 +37,34 @@ To access your archive, open `output/index.html` in a browser. You should see s You can sort by column, search using the box in the upper right, and see the total number of links at the bottom. -Click the Favicon under the "Files" column to go to the details page for each link. \ No newline at end of file +Click the Favicon under the "Files" column to go to the details page for each link. + +--- + +*Some alternatives that also work:* + +Add a list of links from remote URL: +```bash +./archive "https://getpocket.com/users/yourusername/feed/all" # url to an RSS, html, or json links file +``` + +Add a single URL or list of URLs to archive via stdin: +```bash +cat ./urls_to_archive.txt | ./archive +# or +echo 'https://example.com' | ./archive +``` + +Add all the links from your browser history: +```bash +./bin/archivebox-export-browser-history --chrome # works with --firefox as well, can take path to SQLite history db +./archive output/sources/chrome_history.json +``` + +Or update the archive without adding new links: +```bash +./archive +``` + +--- +