Skip to content

Instantly share code, notes, and snippets.

@nickserv
Created June 26, 2014 03:18
Show Gist options
  • Save nickserv/39331c192c41a7032b16 to your computer and use it in GitHub Desktop.
Save nickserv/39331c192c41a7032b16 to your computer and use it in GitHub Desktop.
Downloads all (known) header images used on 4chan.org
#!/bin/bash
directory="4chan header images" # the directory to download the images to
mkdir "$directory"
pushd "$directory" > /dev/null
curl -Of http://s.4cdn.org/image/title/[0-262].png
popd > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment