voidrice/.local/bin/rssadd

19 lines
554 B
Text
Raw Normal View History

#!/bin/sh
2021-04-07 15:46:50 +00:00
if echo "$1" | grep -q "https*://\S\+\.[A-Za-z]\+\S*" ; then
url="$1"
else
url="$(grep -Eom1 '<[^>]+(rel="self"|application/[a-z]+\+xml)[^>]+>' "$1" |
2021-04-07 15:46:50 +00:00
grep -o "https?://[^\" ]")"
2021-04-07 15:46:50 +00:00
echo "$url" | grep -q "https*://\S\+\.[A-Za-z]\+\S*" ||
notify-send "That doesn't look like a full URL." && exit 1
fi
2020-04-08 23:10:00 +00:00
RSSFILE="${XDG_CONFIG_HOME:-$HOME/.config}/newsboat/urls"
if awk '{print $1}' "$RSSFILE" | grep "^$url$" >/dev/null; then
2019-03-20 18:45:08 +00:00
notify-send "You already have this RSS feed."
2019-03-13 01:20:17 +00:00
else
echo "$url" >> "$RSSFILE" && notify-send "RSS feed added."
2019-03-13 01:20:17 +00:00
fi