summaryrefslogtreecommitdiff
path: root/bin/extra/ehbtodl
blob: 39d862109ed0845cb73c59ad096c41019add561c (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
echo "$1" | sed 's/-H/\\\n\t&/g' | sed '/gzip/d' > /tmp/curlcommand.sh 
sh /tmp/curlcommand.sh > /tmp/ehbso.html
vids="$(grep -oE "youtube\.com/embed/.{11}" /tmp/ehbso.html | cut -d'/' -f 3 | tr '\n' ' ')"
for i in $vids 
do
	echo "https://www.youtube.com/watch?v=$i"
done > /tmp/todownload
# yt-dlp -P "$HOME/Downloads/vids" -o "%(title)s" -a /tmp/todownload