2025-11-05 22:17:50 +03:00

9 lines
105 B
Bash
Executable File

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