dotfiles/.local/bin/scripts/cj
2021-07-29 16:02:20 +02:00

3 lines
183 B
Bash
Executable file

#!/bin/sh
# [c]at the given files as prettified [j]son
cat "$@" | while read -r line; do echo -n "$line" | python -m json.tool 2>/dev/null; done | bat --language json --style numbers