感谢各位简友一直的关注。
欢迎关注:感谢陪伴
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"