diff --git a/home/.bin/jq-test b/home/.bin/jq-test new file mode 100755 index 0000000..e527532 --- /dev/null +++ b/home/.bin/jq-test @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +source .utils + + +print_usage() { + orange "jq-test - interactively use JQ against a json file" + echo " " + underline "Usage:" + echo "jq-test [FILE]" + echo " " + underline "Options:" + echo "-h, --help show this help text" +} + +POS_ARGS=() + +while test $# -gt 0; do + case "$1" in + -h|--help) + print_usage + exit 0 + ;; + *) + POS_ARGS+=$1 + shift + ;; + esac +done + +if [ ${#POS_ARGS[@]} -eq 0 ] +then + print_usage + exit 0 +fi + +echo '' | fzf --preview "jq {q} < ${POS_ARGS[@]}" diff --git a/home/.bin/yq-test b/home/.bin/yq-test new file mode 100755 index 0000000..f10b839 --- /dev/null +++ b/home/.bin/yq-test @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +source .utils + + +print_usage() { + orange "yq-test - interactively use YQ against a json file" + echo " " + underline "Usage:" + echo "yq-test [FILE]" + echo " " + underline "Options:" + echo "-h, --help show this help text" +} + +POS_ARGS=() + +while test $# -gt 0; do + case "$1" in + -h|--help) + print_usage + exit 0 + ;; + *) + POS_ARGS+=$1 + shift + ;; + esac +done + +if [ ${#POS_ARGS[@]} -eq 0 ] +then + print_usage + exit 0 +fi + +echo '' | fzf --preview "yq {q} < ${POS_ARGS[@]}"