1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-27 16:20:05 +02:00

Updated Scheduled Archiving (markdown)

Nick Sweeting
2019-01-23 02:51:36 -05:00
parent c3b46b20cf
commit 242e05dd72

@@ -26,7 +26,7 @@ cd /opt/ArchiveBox
0 24 * * * www-data /opt/ArchiveBox/bin/firefox_custom.sh 0 24 * * * www-data /opt/ArchiveBox/bin/firefox_custom.sh
``` ```
## Example: Import Pocket RSS feed every 24 hours ## Example: Import an RSS feed from Pocket every 12 hours
This example imports your Pocket bookmark feed and archives any new links once a day: This example imports your Pocket bookmark feed and archives any new links once a day:
@@ -40,7 +40,7 @@ cd /opt/ArchiveBox
./bin/archivebox https://getpocket.com/users/yourusernamegoeshere/feed/all >> /var/log/ArchiveBox.log ./bin/archivebox https://getpocket.com/users/yourusernamegoeshere/feed/all >> /var/log/ArchiveBox.log
``` ```
**Then create a new file `/etc/cron.d/ArchiveBox-Pocket` to tell cron to run your script every 24 hours:** **Then create a new file `/etc/cron.d/ArchiveBox-Pocket` to tell cron to run your script every 12 hours:**
```bash ```bash
0 24 * * * www-data /opt/ArchiveBox/bin/pocket_custom.sh 0 12 * * * www-data /opt/ArchiveBox/bin/pocket_custom.sh
``` ```