Skip to content

Instantly share code, notes, and snippets.

@ceving
Created March 13, 2024 10:09
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 ceving/6506c205d399d4d009c8640d46d6a4a0 to your computer and use it in GitHub Desktop.
Save ceving/6506c205d399d4d009c8640d46d6a4a0 to your computer and use it in GitHub Desktop.
Jq with colored pager
#! /bin/bash
if [[ -e "$1" && ! -d "$1" ]]; then
jq -C . "$@"
else
jq -C "${@-.}"
fi |
less -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment