Last active
September 28, 2024 04:33
-
-
Save goooooouwa/c45ba718375c9b1192d7714f48fd5fa9 to your computer and use it in GitHub Desktop.
[Persistently retry and download a list of URLs with curl] https://superuser.com/questions/142459/persistent-retrying-resuming-downloads-with-curl https://www.abeautifulsite.net/posts/downloading-a-list-of-urls-automatically/ #curl #bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xargs -n 1 curl -O -L --retry 5 --retry-max-time 60 -C - < ./mp3-urls-unique-id-fix.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment