From c09d91fe95fca4367f47c06fc808cd02a1a8e6a5 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Tue, 13 Aug 2019 14:40:54 -0400 Subject: add bins --- templates/.bin/taf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 templates/.bin/taf (limited to 'templates/.bin/taf') diff --git a/templates/.bin/taf b/templates/.bin/taf new file mode 100755 index 0000000..9564b95 --- /dev/null +++ b/templates/.bin/taf @@ -0,0 +1,11 @@ +#!/bin/bash + +jq="/usr/bin/jq" +if [[ ! -x "$jq" && -x "/usr/local/bin/jq" ]]; then + jq="/usr/local/bin/jq" +fi + +station=$(echo -n "$1" | tr "a-z" "A-Z") +json=$(curl -s "https://avwx.rest/api/taf/${station:-KBOS}") +echo "$json" | "$jq" --raw-output '.["Raw-Report"]' 2>&1 + -- cgit v1.2.3