linux : show current subfolders size
The following command show the size used by each subfolder in the current folder ordered by size and in a human readable format :
paste <(du -xs *) <(du -xhs *) | sort -n | cut -f3,4
Comments