Created
June 13, 2015 00:03
-
-
Save ssahu/0b9af57854502c3fc5f5 to your computer and use it in GitHub Desktop.
Download fb-profile-images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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