shithub: rc

ref: 592eeaea689ecedb955ea3d240194528e052f278
dir: /bin/ytpl/

View raw version
#!/bin/rc
# thanks umbraticus
# fun: #!/bin/rc\n$*
# let me know if there's a better solution with tee(1)
rfork n
fn nv{ echo $1; nvi -i $1 }
for(i in $*){
	hget 'https://www.youtube.com/feeds/videos.xml?channel_id='^$i |\
		sed -n 's/.*<id>yt:video:(.*)<\/id>.*/\1/p' |\
		xargs -n 1 fun nv
	echo
}