Mac/Linux 根据大小查找文件
命令
利用find命令,可以查找相应大小的文件
find <path> -type f -size <size filter>
查找并列出所有文件的详细路径,则可以加上 -exec ls -l {} +
find <path> -type f -size <size filter> -exec ls -l {} +
具体参数
其中,size filter的格式:
- 大于: +size
- 小于: -size
- 等于: size
size呢,则是由数字加上单位构成,单位包括:
- b : 512字节的块(block)
- c : 1个字节
- w : 2个字节(word)
- k : KB
- M : MB
- G : GB
举几个例子
- 查找0字节文件
find . -type f -size 0 -exec ls -l {} +
- 查找在10M和20M之间的文件
find . -type f -size +10M -size -20M
参考文献
扫一扫关注微信公众号:耿直的IT男阿斌
聊一聊IT男眼中的世界