I use jq 1.6 and I try to round the number to two decimal places. How can I do it?
My code:
echo 20.152 | jq -c 'round'
My output:
20
Expected output:
20.15
I use jq 1.6 and I try to round the number to two decimal places. How can I do it?
My code:
echo 20.152 | jq -c 'round'
My output:
20
Expected output:
20.15