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

Updated Usage (markdown)

Nick Sweeting
2020-02-03 20:21:27 -05:00
parent f40b6b55fc
commit 8aecf874de

@@ -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 ### 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 ```bash
./bin/archivebox-export-browser-history --chrome ./bin/archivebox-export-browser-history --chrome
./archive output/sources/chrome_history.json ./archive output/sources/chrome_history.json
# or # or
./bin/archivebox-export-browser-history --firefox ./bin/archivebox-export-browser-history --firefox
./archive output/sources/firefox_history.json ./archive output/sources/firefox_history.json
# or
./bin/archivebox-export-browser-history --safari
./archive output/sources/safari_history.json
``` ```
--- ---