分析&回答
使用 find 命令找到大于指定大小的文件:
当前目录大于500M文件
find ./ -size +500M
用户目录大于500M文件
find ~ -type f -size +500M
根目录大于500M文件
find / -type f -size +500M
复制代码
让文件按大小排序
du -h * | sort -n
喵呜面试助手:一站式解决面试问题,你可以搜索微信小程序 [喵呜面试助手] 或关注 [喵呜刷题] -> 面试助手 免费刷题。如有好的面试知识或技巧期待您的共享!