find查找指令使用

# 在某个目录下查看含有某个字段的文件
find . | xargs grep "custom"

# lldb 调试core文件指令:
lldb -c /storage/data/core/core_processor.136668.sz-lab-005.1670427164 -- mainboard -d modules/planning/dag/planning.dag

# 当然会想只查看文件, 不查看目录
find . -type f | xargs grep "custom"

# 如果我们执行列出文件名, 不需要查看内容呢。grep 提供了-l来只显示文件名称
find ./ -type f | xargs grep "custom" -l

# 如果我们想过滤掉某些文件夹,不去这些文件夹下查看呢, 使用-purn
find . -path ./.git -prune -o -type f | xargs grep "custom" -l

# 当然查看某个目录下含有某个字段也可以直接使用grep 
grep -r "custom" -l

# 当我们只需要查找超过800M大小文件,并显示查找出来文件的具体大小,可以使用下面命令
find . -type f -size +800M  -print0 | xargs -0 du -h | sort -nr
posted @ 2023-05-28 13:51  砚台是黑的  阅读(9)  评论(0编辑  收藏  举报