Skip to content

Instantly share code, notes, and snippets.

@skulbrane
Forked from aguegu/octocats.sh
Created December 4, 2015 19:21
Show Gist options
  • Select an option

  • Save skulbrane/59f36af8e106cf115bac to your computer and use it in GitHub Desktop.

Select an option

Save skulbrane/59f36af8e106cf115bac to your computer and use it in GitHub Desktop.
A bash script to download all Octocats logos from http://octodex.github.com/
#!/bin/zsh
curl -s "https://octodex.github.com/" | grep "<img.*data-src" | grep -o "/image[^\"]*" | while read line; do
wget 'https://octodex.github.com'$line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment