From 4684d80b6271dd775cd23dabf2b91d6ce56fa33a Mon Sep 17 00:00:00 2001 From: Ensa Date: Fri, 20 Dec 2019 00:14:09 -0800 Subject: first significant commit see README.md for information --- bin/rsschk | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 bin/rsschk (limited to 'bin/rsschk') diff --git a/bin/rsschk b/bin/rsschk new file mode 100755 index 0000000..5a8de6e --- /dev/null +++ b/bin/rsschk @@ -0,0 +1,16 @@ +#!/bin/sh +# checks if $1 is a valid URL, and if so, checks to see if it's in newsboat's urls file, and if not, adds it to the file. +if [ "$1" = "-h" ]; then + printf 'usage: rsschk [-h]|URL [\"category\"]\n'>/dev/stderr&&return 1 +fi +XDG_CONFIG_HOME=${XDG_CONFIG_HOME:=~/.config} +! echo "$1" | grep "http*://\S\+\.[A-Za-z]\+\S*" >/dev/null && + notify-send "Invalid input. rsschk takes http(s) URLs as input." && exit +RSSFILE="$XDG_CONFIG_HOME/newsboat/urls" +if grep -E "^$1" "$RSSFILE"; then + if [ -z "$2" ]; then + echo "$1">>"$RSSFILE"&¬ify-send "RSS feed added." "You may want to edit $RSSFILE now." + else + echo "$1 $2">>"$RSSFILE"&¬ify-send "RSS feed added with one category." + fi +fi -- cgit 1.4.1-2-gfad0