I was thinking of whether the Enhance control panel listing could be enhanced by including a filter for sorting according to disk space usage.
+1 for me.
Yes please
+1
To find the accounts with the largest size, use:
du -sh /var/www/* | sort -rh
To find only the top 10 accounts by size, use:
du -sh /var/www/* | sort -rh | head -n 10