In my OS, I can find
-h, --human-numeric-sort
compare human readable numbers (e.g., 2K 1G)
And I have a file aaa.txt:
2M
5904K
1G
Then I type
sort -h aaa.txt
The output is
5904K
2M
1G
It's wrong. It should be
2M
5904K
1G
Questions:
- Why does sort -h not work? The result is wrong even in lexicographically order perspective. How to sort the aaa.txt file in human readable numbers.
- Or it can work only with
du -h
? But the most vostes answer seems can work withawk
. - With
du -h
,sort
does not need to specify which field, likesort -k1h,1
? Why? What would happend if the memory size is not in the first field?
Below is a comment from GNU
sort
's source code.It's not mentioned in the man page, but
-h
is not supposed to work with your input.You can use
numfmt
to perform a Schwartzian transform as shown below.