Bash:用指数排序数字

前端之家收集整理的这篇文章主要介绍了Bash:用指数排序数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用如下数值排序一个文件
414e-05
435e-05
0.5361
0.7278
0.1341
0.9592
0.2664

排序所有的数组得到排序,除了具有指数的数组,排序函数有一些方法来评估这个表达式吗?

如果你的sort命令的版本是足够新的,如果你喜欢你的选项,它应该支持-g选项(或–general-numeric-sort).在信息手册中描述如下:

Sort numerically,using the standard C function strtod to convert a prefix of each line to a double-precision floating point number. This allows floating point numbers to be specified in scientific notation,like ‘1.0e-34′ and ’10e100’.

原文链接:https://www.f2er.com/bash/386793.html

猜你在找的Bash相关文章