1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-23 14:44:21 +02:00

Update references to the old ./archive CLI utility to the new archivebox CLI

Michael Peteuil
2020-08-09 22:11:26 -04:00
parent 9f0fea84fe
commit bf0b5d7c72

@@ -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!