From 5476eb43a545ff97317285fefdc494c54a560866 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sat, 18 Jan 2020 02:01:45 +0100 Subject: Add new ytrss util --- .local/bin/ytrss | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100755 .local/bin/ytrss (limited to '.local/bin/ytrss') diff --git a/.local/bin/ytrss b/.local/bin/ytrss new file mode 100755 index 0000000..0377160 --- /dev/null +++ b/.local/bin/ytrss @@ -0,0 +1,51 @@ +#! /usr/bin/env sh + +main() +{ + # Handle opts + opts "$@" + shift "$OPTS" + unset OPTS + + # Show help + [ "$OPT_HELP_ONLY" ] && usage && exit 0 + + for url in $@ + do + curl -s "$url" \ + | grep -Eo 'https://www.youtube.com/feeds/videos.xml?[^"]+' + done +} + +opts() +{ + OPTS=0 + + while getopts ":h" opt + do + case "$opt" in + h) OPT_HELP_ONLY=1 ;; + *) + printf "Invalid option passed: %s\n" "$OPTARG" >&2 + ;; + esac + done + + unset opt +} + +usage() +{ + cat < [ ... ] + +Get the RSS feed URL of a YouTube channel through the channel's page URL. + +Options: + -h Show this help text and exit. +EOF +} + +main "$@" -- cgit v1.1