grep -rn "string" directory
递归查询内容包含指定字符的文件,并显示行号,directory默认当前目录
grep -rn "Proccess done." getGEO_batch1/log
find directory -name "pattern"
查询文件名含有指定字符的文件
find ./getGEO_batch1/log -name "*err"
递归查询内容包含指定字符的文件,并显示行号,directory默认当前目录
grep -rn "Proccess done." getGEO_batch1/log
查询文件名含有指定字符的文件
find ./getGEO_batch1/log -name "*err"
本文标题:Linux -- grep find 常用技巧
本文链接:https://www.haomeiwen.com/subject/yugvrdtx.html
网友评论