Linux subfolder size

feature image

Sub folder size

In Linux, if you want to find the sub-folder size by Linux command, then

du -sh ./*

Sort by size

du -sh ./* | sort -h

,