我正在编写一个 .bat 文件来对带有坐标的文本文件进行排序:
input
-30.125,10.555
-8.2333,9.00
12.2556,-10
10,10.555
15,20.1
15,25
20,10.555
-10,10.555
requested output:
12.2556,-10
-8.2333,9.00
-30.125,10.555
-10,10.555
10,10.555
20,10.555
15,20.1
15,25
我的代码:
sort --g --field-separator=, --key=2,1 "input coordinates.txt" > "sortedcoordinates.txt"
使用我的代码输出,如您所见,第一列中的负值从高到低排序:
12.2556,-10
-8.2333,9.00
-10,10.555
-30.125,10.555
10,10.555
20,10.555
15,20.1
15,25