summaryrefslogtreecommitdiff
path: root/bin/common
diff options
context:
space:
mode:
Diffstat (limited to 'bin/common')
-rwxr-xr-xbin/common/y2chid7
-rwxr-xr-xbin/common/y2feed14
2 files changed, 9 insertions, 12 deletions
diff --git a/bin/common/y2chid b/bin/common/y2chid
deleted file mode 100755
index 68ba6bc..0000000
--- a/bin/common/y2chid
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-test -z "${chidot:=$1}" \
- && chidot="$(cat /dev/stdin)"
-
-echo "chidot: ${chidot}" 1>&2
-curl -s "https://www.youtube.com/${chidot}/"| pup 'meta[itemprop="channelId"] attr{content}'
diff --git a/bin/common/y2feed b/bin/common/y2feed
index 0f27d68..196ecb7 100755
--- a/bin/common/y2feed
+++ b/bin/common/y2feed
@@ -1,8 +1,12 @@
-#!/usr/bin/env sh
+#!/bin/sh
+ua="$(yt-dlp --dump-user-agent)"
-test -z "${url:=$1}" \
- && url="$(cat /dev/stdin)"
+test -z "${url:=$1}" &&
+ url="$(cat /dev/stdin)"
-echo "url: ${url}" 1>&2
+url="http://youtube.com/$(echo "$url" |
+ awk -F '/' '{print $NF}')"
+echo "url: $url" >&2
-curl -s "$url" | pup 'link attr{href}' | grep 'feeds'
+curl -L -s -H "$ua" "$url" |
+ pup 'link[title=RSS] attr{href}'