Have a fun little CLI I found and bonuscommand for you to throw into your .bashrc/.zshrc file:

jcat() {
  cat $1 | jq ".$2"
}

CLI is jq (stedolan.github.io/jq), a JSON CLI. Function will pretty print, with color, JSON files in your terminal!

  • 0
  • 1