blob: 11083d9596dd75ebdea5c891f50e3ff5a7aebc83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|