Skip to content

Instantly share code, notes, and snippets.

@pforret
Last active November 9, 2023 18:48
Show Gist options
  • Save pforret/6919ab94f2964339ef5f48de010a0275 to your computer and use it in GitHub Desktop.
Save pforret/6919ab94f2964339ef5f48de010a0275 to your computer and use it in GitHub Desktop.
download all the URLS (images) from a long list
#!/usr/bin/env bash
# all image URLS are in a urls.tx file, 1 url per line
# let this run in the folder where you want to the downloaded images to appear
while read -r url ; do
wget "$url"
done < urls.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment