From 948ba4ca0dc9666ca69b6d69aee169c8d27335b4 Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Sat, 5 Jul 2025 12:23:28 -0400 Subject: [PATCH] Title now snatched from index.html file --- rss.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rss.sh b/rss.sh index 404df4a..dd40b8c 100755 --- a/rss.sh +++ b/rss.sh @@ -39,8 +39,7 @@ done shopt -u extglob -printf 'Title of blog post:\n' -read -r TITLE +TITLE="$(cat "${WEBROOT}/${LINK}/index.html" | grep -A1 '' | grep '\[' | sed 's|.*\[ ||g; s| \| easthighNerd \].*||')" printf 'Description of blog post:\n' read -r DESCRIPTION