Skip to content

Instantly share code, notes, and snippets.

@rnagle
Created April 14, 2016 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rnagle/6e74126c2215ebb3b4c69d3efa66d01a to your computer and use it in GitHub Desktop.
Save rnagle/6e74126c2215ebb3b4c69d3efa66d01a to your computer and use it in GitHub Desktop.
Weather for your shell
# Ex. weather "Chicago, IL"
function weather() {
local location="$1";
curl "http://wttr.in/$location";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment