all repos — dotfiles @ 50b6aaff1b300026dbb9057d336732cc11ecf13d

linux dotfiles

bin/scripts/get-ep-walls (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
#!/bin/sh
epdir="$HOME/pictures/ep"
if [ -d $epdir ]
then
    cd "$epdir"
    wget reddit.com/r/earthporn.json || exit
    cat earthporn.json | jq '.data.children[] .data.url' | tr -d '"' |\
        grep -E "jpg|png$" | xargs wget
    rm *json
else
    printf "$epdir doesn't exist\n"
    exit
fi