Grimoire-
Command
.es

GNU+Linux command memo

numfmt : human readable number formating

Choisir le format d’affichage d’un nombre et son préfixe d’échelle d’unité : système international (SI), commission électronique internationale (IEC)…

$ echo 12345678 | numfmt --to=si (1)
13M
$ echo 4096 | numfmt --to=iec
4.0K
# echo 4096 | numfmt --to=si
4.1K
1 The numfmt commande comes from the coreutils Debian package

You can pipe values from du to numfmt.

Based on an original toot from @ddrake : https://mamot.fr/@ddrake@mathstodon.xyz/112784707327300170