diff options
| author | Henry Webster <hwebs@hwebs.info> | 2026-07-26 09:06:21 -0500 |
|---|---|---|
| committer | Henry Webster <hwebs@hwebs.info> | 2026-07-26 09:06:21 -0500 |
| commit | 661077f5e11747cc21b1503f2b955fc5d25993a4 (patch) | |
| tree | f62c95528b306beaf08a1f4f97ceb7467312e912 | |
| parent | 21fa79b15a4916ffd48cb1dc1b0646b363f95324 (diff) | |
change update script to overwrite
| -rwxr-xr-x | update.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,14 +2,14 @@ { printf '%s\n%s\n---\n' 'title: Recently Watched' 'tags: now, feed' curl -fsSL 'https://letterboxd.com/hwebs/rss' -} >> posts/099_watched.xml +} > 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 +} > 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 +} > posts/010_read.xml |
