[Linux] Kiểm tra dung lượng file, folder

Table of Contents

[Linux] Kiểm tra dung lượng file, folder

du -a /webdir/ | sort -n -r | head -n 20
sudo du -a /webdir/ | sort -n -r | head -n 20

find -type f -exec du -Sh {} + | sort -rh | head -n 5
find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5

du -hs * | sort -rh | head -5

Leave a Reply

Your email address will not be published. Required fields are marked *