From f952fa52b45546326521c13958582cf12df2e74a Mon Sep 17 00:00:00 2001 From: Henry Webster Date: Wed, 22 Jul 2026 15:21:05 -0500 Subject: create update.sh script --- update.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 update.sh (limited to 'update.sh') diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..11083d9 --- /dev/null +++ b/update.sh @@ -0,0 +1,15 @@ +#!/bin/sh +{ + printf '%s\n%s\n---\n' 'title: Recently Watched' 'tags: now, feed' + curl -fsSL 'https://letterboxd.com/hwebs/rss' +} >> posts/099_watched.xml + +{ + printf '%s\n%s\n---\n' 'title: Currently Reading' 'tags: now, feed' + curl -fsSL 'https://www.goodreads.com/review/list_rss/159263337?shelf=currently-reading' +} >> posts/050_currently-reading.xml + +{ + printf '%s\n%s\n---\n' 'title: Recently Read' 'tags: now, feed' + curl -fsSL 'https://www.goodreads.com/review/list_rss/159263337?shelf=read' +} >> posts/010_read.xml -- cgit v1.3