Posts

Showing posts with the label command

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