Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想对以下文件 numbers.txt 中的值进行排序,下面是一个示例
1.1 1.2 10.0 2.2 1000.0
但是,当我执行以下 cmd
sort numbers.txt
我得到以下信息:
1.1 1.2 10.0 1000.0 2.2
我需要什么 cmd 来适当地对数值进行排序?
使用该-n标志按数字排序,而不是按字典顺序排序:
-n
sort -n numbers.txt