Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 215 Bytes

find.md

File metadata and controls

18 lines (15 loc) · 215 Bytes
# 查找普通文件
find . -type f

# 查找目录
find . -type f

# 查找文件大小大于/小于某个大小
find . -size +100c
find . -size -100c

+ - 大小
- - 小于
c - 字节
k - KB
M - MB
G - GB