From b5fcad6dbd67625a0c818adf1f69d0302125c1bf Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 6 Apr 2021 15:34:53 -0400 Subject: [PATCH] Updated Quickstart (markdown) --- Quickstart.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Quickstart.md b/Quickstart.md index ab73d88..df327fb 100644 --- a/Quickstart.md +++ b/Quickstart.md @@ -43,14 +43,17 @@ Follow the links here to find instructions for exporting a list of URLs from eac Pass in URLs directly, import a list of links from a file, or import from a feed URL. All via stdin: ```bash -# if using docker -docker run -v $PWD:/data -it archivebox/archivebox add 'https://example.com' +archivebox add < your_urls.txt -# or if not using docker -archivebox add 'https://example.com' +# or if using docker +docker run -v $PWD:/data -it archivebox/archivebox add < your_urls.txt -# any text containing links can also be passed in via stdin (works with docker as well) +# or if using docker-compose +docker-compose run archivebox add < your_urls.txt + +# any text containing URLs can ingested via stdin or as args curl https://getpocket.com/users/YOURUSERNAME/feed/all | archivebox add +archivebox add 'https://example.com' ``` ## ✅ Done! @@ -71,6 +74,10 @@ open http://127.0.0.1:8000 **Next Steps:** +```bash +archivebox help # see info about all the available commands +``` + - Read [[Usage]] to learn about the various CLI and web UI functions - Read [[Configuration]] to learn about the various archive method options - Read [[Scheduled Archiving]] to learn how to set up automatic daily archiving