9 lines
105 B
Bash
Executable File
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
|