2021-01-23 19:23:40 +00:00
|
|
|
#!/bin/sh
|
2021-07-29 14:02:20 +00:00
|
|
|
# [c]at the given files as prettified [j]son
|
2021-10-08 11:05:58 +00:00
|
|
|
cat "$@" | while read -r line; do echo -n "$line" | python3 -m json.tool; done | bat --language json --style numbers
|