aboutsummaryrefslogtreecommitdiff
path: root/templates/.bin/taf
diff options
context:
space:
mode:
Diffstat (limited to 'templates/.bin/taf')
-rwxr-xr-xtemplates/.bin/taf11
1 files changed, 11 insertions, 0 deletions
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
+