Skip to content

Instantly share code, notes, and snippets.

@plusreed
Last active February 18, 2020 03:16
Show Gist options
  • Save plusreed/c3e76e308001f0f3c14f20f60928a047 to your computer and use it in GitHub Desktop.
Save plusreed/c3e76e308001f0f3c14f20f60928a047 to your computer and use it in GitHub Desktop.
Get all the Reddit default profile pictures.
#!/bin/bash
## Gets all the default Reddit profile pictures.
## https://www.reddit.com/user/timawesomeness/comments/813jpq/default_reddit_profile_pictures/
## This script is licensed under the MIT license, but the assets downloaded are the property of Reddit Inc.
ALL_COLOR="A5A4A4 545452 A06A42 C18D42 FF4500 FF8717 FFB000 FFD635 DDBD37 D4E815 94E044 46A508 46D160 0DD3BB 25B79F 008985 24A0ED 0079D3 7193FF 4856A3 7E53C1 FF66AC DB0064 EA0027 FF585B"
for i in $ALL_COLOR; do
wget https://www.redditstatic.com/avatars/avatar_default_{01,02,03,04,05,06,07,08,09}_$i.png
wget https://www.redditstatic.com/avatars/avatar_default_{10..20}_$i.png
done
wget https://www.redditstatic.com/avatars/avatar_default_{1..30}.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment