Bug 14491

Summary: Support sort -h
Product: Busybox Reporter: Kasper <kasperkantz>
Component: OtherAssignee: unassigned
Status: RESOLVED FIXED    
Severity: major CC: busybox-cvs
Priority: P5    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Host: Target:
Build:

Description Kasper 2022-01-01 15:25:25 UTC
with coreutils sort:
```
# or `du -h | sort -hr`
$ cat << EOF | sort -hr
320K  ./x1
412K  ./x2
2.6M  .
952K  ./x3
764K  ./x4
EOF
```

result:
```
2.6M  .
952K  ./x3
764K  ./x4
412K  ./x2
320K  ./x1
```
busybox doesn't support -h yet. would be nice to add it.
Comment 1 Denys Vlasenko 2022-01-05 11:06:41 UTC
Fixed in git