Skip to content

Instantly share code, notes, and snippets.

@ssahu
Created June 13, 2015 00:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssahu/0b9af57854502c3fc5f5 to your computer and use it in GitHub Desktop.
Save ssahu/0b9af57854502c3fc5f5 to your computer and use it in GitHub Desktop.
Download fb-profile-images
#!/bin/bash
# This script downloads the profile images of facebook profile ids from 1 to 10
# change the start and end ids and use it - does not require any login
for i in {1..10}; do wget http://graph.facebook.com/picture?id=$i&width=10000 -O $i.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment