2026-05-22 15:28:08 +03:00

8 lines
139 B
Bash
Executable File

#!/bin/sh -eu
if [ -t 0 ]; then
echo "${@}" | python3 -m json.tool --no-ensure-ascii
else
python3 -m json.tool --no-ensure-ascii
fi