Skip to content

Instantly share code, notes, and snippets.

@tobbez
Created March 19, 2010 02:27
Show Gist options
  • Save tobbez/337157 to your computer and use it in GitHub Desktop.
Save tobbez/337157 to your computer and use it in GitHub Desktop.
dump images from knowyourmeme
# one-liner to download all images for a meme from knowyourmeme
# "i dare you to try", he said. therefore i bestow upon thee:
m="polandball"; (curl -s http://knowyourmeme.com/memes/${m} | egrep -o "/memes/${m}\?content=true&photo_page=[0-9]+" && echo "/memes/${m}") | sort | uniq | sed "s/amp;//" | xargs -I URLPATH curl http://knowyourmeme.comURLPATH | sort | uniq | egrep -o "/photos/[0-9]+" | sort | uniq | xargs -I URLPATH curl -s http://knowyourmeme.comURLPATH | grep 'class="original"' | egrep -o "http://cdn[0-9]+.*[0-9]+" | xargs -I URL wget URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment