linux 命令

查找最大文件: find / -type f -exec du -Sh {} + | sort -rh | head -n 10

 find / -size +20G  -type f -exec du -Sh {} + | sort -rh | head -n 10

原文地址:https://www.cnblogs.com/xhzd/p/15747630.html