Skip to content

Instantly share code, notes, and snippets.

@guz-anton
Created September 11, 2018 19:23
Show Gist options
  • Save guz-anton/183cfe7fd110ab5c5446025c8f87b7af to your computer and use it in GitHub Desktop.
Save guz-anton/183cfe7fd110ab5c5446025c8f87b7af to your computer and use it in GitHub Desktop.
Scrape images with wget
# Scrape images with wget
# https://davidwalsh.name/scrape-images-wget
# $1 = url
# Example: scrapeimages https://davidwalsh.name/
scrapeimages() {
wget -nd -H -p -A jpg,jpeg,png,gif -e robots=off $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment