I was thinking of whether the Enhance control panel listing could be enhanced by including a filter for sorting according to disk space usage.

2 months later
a month later

+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

Write a Reply...
Follow @enhancecp