Linux -- grep find 常用技巧
2023-03-22 本文已影响0人
生信摆渡
grep -rn "string" directory
递归查询内容包含指定字符的文件,并显示行号,directory默认当前目录
grep -rn "Proccess done." getGEO_batch1/log
find directory -name "pattern"
查询文件名含有指定字符的文件
find ./getGEO_batch1/log -name "*err"