Bilgi Merkezi
Ana sayfa > Bilgi Merkezi > English > cPanel > cPanel > Users Disk Space Quotas & Usage in command line
Users Disk Space Quotas & Usage in command line
You could check user disk space and quotas on cPanel, but this simple command possible to save yourself time. This simple script will show you all the information you need to see how your users are utilizing their allotted disk space.
awk ‘$2 !~ /nobody/ {print $2}’ /etc/userdomains | sort -u | while read USROUT; do quota -v -u $USROUT; done