Skip to content

Instantly share code, notes, and snippets.

@vdinovi
Created September 8, 2020 19:03
Show Gist options
  • Select an option

  • Save vdinovi/a8ef512f819633599c506991646be20b to your computer and use it in GitHub Desktop.

Select an option

Save vdinovi/a8ef512f819633599c506991646be20b to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -z "$1" ]; then
echo "must provide jq query"
elif [ -p /dev/stdin ]; then
eval "cat | grep --line-buffered '^{' | jq $1"
else
echo "missing input"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment