Created
June 20, 2016 17:35
-
-
Save al3rez/53191ba68b944cb7e73f7ca73c849c88 to your computer and use it in GitHub Desktop.
A simple script to easily get Bing’s image of the day
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
#!/usr/bin/env bash | |
bing_bg() { | |
local host='http://bing.com' | |
local path='HPImageArchive.aspx' | |
local query="format=js&idx=${1:-0}&n=1&mkt=en-US" | |
curl -s "$host/$path?$query" |\ | |
jq --arg host "$host" -r '$host + .images[0].url' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment