Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created June 20, 2016 17:35
Show Gist options
  • Save al3rez/53191ba68b944cb7e73f7ca73c849c88 to your computer and use it in GitHub Desktop.
Save al3rez/53191ba68b944cb7e73f7ca73c849c88 to your computer and use it in GitHub Desktop.
A simple script to easily get Bing’s image of the day
#!/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