du -Lsbc * | awk '
function hr(bytes) {
hum[1024**4]="TiB";
hum[1024**3]="GiB";
hum[1024**2]="MiB";
hum[1024]="kiB";
for (x = 1024**4; x >= 1024; x /= 1024) {
if (bytes >= x) {
return sprintf("%8.3f %s", bytes/x, hum[x]);
}
}
return sprintf("%4d B", bytes);
}
{
print hr($1) "\t" $2
}
'
funzione awk basata su this.
Si potrebbe probabilmente rendere l'output un po' più gradevole eseguendo il piping attraverso column
o riempiendolo a sinistra con spazi.
Modifica: Aggiunto il padding sinistro.
Inoltre, per ordinare l'elenco:du -Lsbc * | sort -n | awk
e poi lo script awk.