summaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
authorHenry Webster <hwebs@hwebs.info>2026-07-22 15:21:05 -0500
committerHenry Webster <hwebs@hwebs.info>2026-07-22 15:21:05 -0500
commitf952fa52b45546326521c13958582cf12df2e74a (patch)
treeb4dee796455d2eb449c66afc01564bd20a0bd757 /update.sh
parent8b4b8edb8460ad15b74b15f1e6d94bfbe69fcc3f (diff)
create update.sh script
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh15
1 files changed, 15 insertions, 0 deletions
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