all repos — dotfiles @ 64c26d063600be17fb491d7aef2857324d72fba3

linux dotfiles

bin/scripts/get-memes

1 2 3 4 5 6
#!/usr/bin/bash

memepath=$HOME/pictures/memes

wget --quiet reddit.com/r/memes.json -O -| jq '.data.children[] |.data.url' |\
    grep -E 'jpg|png"$' | xargs wget --quiet -P "$memepath"