- 名字
1
2find . -name "lizhen.c";
find / -iname "lizhen.c" - 目录深度
1
2find -maxdepth 2 -name passwd ;
find / -mindepth 3 - maxdepth 5 -name passwd - 反向
1
find -not -iname "lizhen.c"
- 执行命令
1
find -iname "lizhen.c" -exec md5sum {} \;
- 文件权限
1
find. -perm -g=r -type f -exec ls -l {} \;
- 空文件
1
find ~ -empty
- 大小
1
find ~ -size +100M
- Top 5 Big files
1
find . -type f -exec ls -s {} \; | sort -n -r | head -5
- find files by comaring with the modification time of other file
1
find -newer ordinary_file
- 最近几天没有修改的文件
1
find . -mtime +60
- xargs 备注: xargs 默认是以空白字符 (空格, TAB, 换行符) 来分割记录的,当这些不能分割时需设置为NULL分割.
1
find ~ -name '*.log' -print0 | xargs -0 cat