Skip to content

Instantly share code, notes, and snippets.

@alfakini
Forked from aguegu/octocats.sh
Created June 6, 2014 21:15
Show Gist options
  • Save alfakini/d2d29887cba69995202f to your computer and use it in GitHub Desktop.
Save alfakini/d2d29887cba69995202f to your computer and use it in GitHub Desktop.
#!/bin/bash
curl -s "https://octodex.github.com/" | grep "<img.*data-src" | grep -o "/images.*\.png" | while read line; do
line="https://octodex.github.com$line"
wget $line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment