标签: unix floating-point printf
我需要删除小于1.00的浮动小数值的前导零。
1.00
尝试过的代码:
printf '%.*f\n' 0.12
结果: 0.1
0.1
预期结果: .1
.1