all repos — dotfiles @ e494bc9c5aaf7f95cd114dc323d53ea2ab0287c3

linux dotfiles

bin/scripts/get-memes (view raw)

 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"