↧
Answer by Tim for How to subscribe to a youtube feed from linux command line?
I finally did it using this bash script: #!/bin/bash conffile="$@" if [ ! -f "$@" ] || [ 3 -ne $(wc -l "$@" | grep -o '^[0-9]*') ]; then echo "This script writes a list of new video ids into an output...
View ArticleHow to subscribe to a youtube feed from linux command line?
I want to subscribe to a youtube channel and automatically download new videos to my linux machine. I know I could do this e.g. with miro, but I will not watch the videos using Miro, want to choose...
View Article