Hacker News new | ask | show | jobs
by Seredo 1670 days ago
Sounds like python and Youtube-dl would be a good fit for this.
1 comments

untested but something like

    #!/bin/bash
    for line in url_list; do
        youtube-dl '$line'
        sleep `echo $((1 + $RANDOM % 60))`
    done;