linux查找指定目录下指定文件包含的内容
这个问题我面试遇到了两次,都是大公司的,挂了,哎,刚刚看到了,做个记录:参考:https://www.cnblogs.com/xiangsj/p/9065336.html//.点为查找当前目录 下 的 所有 *.php 文件里 有 hello 的文件find . -name "*.php" | xargs grep "hello"//根目录find / -name "*.php"...
·
这个问题我面试遇到了两次,都是大公司的,挂了,哎,刚刚看到了,做个记录:
参考:https://www.cnblogs.com/xiangsj/p/9065336.html
//.点为查找当前目录 下 的 所有 *.php 文件里 有 hello 的文件
find . -name "*.php" | xargs grep "hello"
//根目录
find / -name "*.php" | xargs grep "hello"
在按照每小时分割的日志文件里面找包含“NaN”的信息
// 日志文件每小时分隔,如2019.05.20.18, 2019.05.20.19等格式
find . -name "log.2019.05.20.*" | xargs grep "NaN"
xargs: 给其他命令传递参数的一个过滤器
更多推荐
已为社区贡献1条内容
所有评论(0)