diff options
author | filip <“filip.rabiega@gmail.com”> | 2025-10-10 18:37:10 +0200 |
---|---|---|
committer | filip <“filip.rabiega@gmail.com”> | 2025-10-10 18:37:10 +0200 |
commit | 08204fc9b9f63015a1dc083b471c6839818eeb59 (patch) | |
tree | 3b68ffffe45759f82cebb24fbeaecf3e66aec7a1 /rssadd | |
parent | 9535dd8f8ac46335f75d42b773cf0fa9305a722d (diff) | |
download | chadscripts-08204fc9b9f63015a1dc083b471c6839818eeb59.tar.gz chadscripts-08204fc9b9f63015a1dc083b471c6839818eeb59.tar.bz2 chadscripts-08204fc9b9f63015a1dc083b471c6839818eeb59.zip |
new stuff
Diffstat (limited to 'rssadd')
-rwxr-xr-x | rssadd | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#!/bin/sh + +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" | + grep -o "https?://[^\" ]")" + + echo "$url" | grep -q "https*://\S\+\.[A-Za-z]\+\S*" || + notify-send "That doesn't look like a full URL." && exit 1 +fi + +RSSFILE="${XDG_CONFIG_HOME:-$HOME/.config}/newsboat/urls" +if awk '{print $1}' "$RSSFILE" | grep "^$url$" >/dev/null; then + notify-send "You already have this RSS feed." +else + echo "$url" >> "$RSSFILE" && notify-send "RSS feed added." +fi |