找出大于100K的普通文件
find romfs/ -type f -size +100k -exec ls -lh {} +
找出userspace目录下所有包含httpRe字符串且扩展名为.h或.c的文件。
find userspace/ -name \*.[hc] | xargs grep httpRe
找出userspace目录下所有包含httpRe字符串且扩展名为.h或.c的文件。
find userspace/ -name \*.[hc] | xargs grep httpRe
使用find命令查找特定文件
本文介绍了如何利用Linux下的find命令来查找特定条件的文件。包括大于100K的普通文件查找及带有特定字符串和扩展名的文件查找方法。
1276

被折叠的 条评论
为什么被折叠?



