标签:command linux
1、查找系统中最大目录并排序:du -h --max-depth=1 | sort -n
2、查找当前目录文件大于800M:find . -type f -size +800M
3、查找到大文件之后做动作:find .-type f -size +800M | xargs command
Linux下查找文件方法
原文地址:http://4402071.blog.51cto.com/4392071/1909684