This website was designed to quickly and conveniently get the RSS feed urls for your favourite Youtube channels without having to pay for some subscription. If you would like to see more features added just let me know! (email [email protected])
#!/bin/bash
finalURL=$(curl -s $1 | sed -nE 's/.*channel_id=([^"]*).*/\1/p' | head -n1)
echo "https://www.youtube.com/feeds/videos.xml?channel_id=$finalURL"