From bf0b5d7c7282a4abaed5739b04b380aae325b8ab Mon Sep 17 00:00:00 2001 From: Michael Peteuil Date: Sun, 9 Aug 2020 22:11:26 -0400 Subject: [PATCH] Update references to the old ./archive CLI utility to the new archivebox CLI --- Quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Quickstart.md b/Quickstart.md index ce34420..3d1b844 100644 --- a/Quickstart.md +++ b/Quickstart.md @@ -53,13 +53,13 @@ Follow the links here to find instructions for exporting a list of URLs from eac Pass in URLs to archive via stdin: ```bash -echo 'https://example.com' | ./archive +echo 'https://example.com' | archivebox add ``` Or import a list of links from a file or feed URL: ```bash -./archive ~/Downloads/example_bookmarks_export.html -./archive https://getpocket.com/users/example/feed/all +archivebox add < ~/Downloads/example_bookmarks_export.html +curl https://getpocket.com/users/example/feed/all | archivebox add ``` ## ✅ Done!