summaryrefslogtreecommitdiff
path: root/yt-feed
blob: 98b19e2369a1047091f36dcbb52ff100c69f4624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
if [ -z "$1" ]; then
	echo "Usage: $0 [-i] <channel name (no @)>"
	exit
elif [[ $1 != -i ]]; then
	url=$(curl -s "https://validator.w3.org/feed/check.cgi?url=https://youtube.com/@$1" | grep "Validator Results" | sed -n 's/.*Results: \(.*\)<\/title>.*/\1/p')
	echo $url
else [ $1 == -i ];
	url=$(curl -s "https://validator.w3.org/feed/check.cgi?url=https://youtube.com/@$2" | grep "Validator Results" | sed -n 's/.*id=\(.*\)<\/title>.*/\1/p')
	echo $url
fi