Linux如何通过文本关键字查找文件

1:搜索某个文件里面是否包含字符串,使用grep “search content” filename1, 例如

$ grep ORA alert_gsp.log

$ grep “ORA” alert_gsp.log

 

2: 如果你想搜索多个文件是否包含某个字符串,可以使用下面方式

grep “search content” filename1 filename2…. filenamen

grep “search content” alert_gsp.log

3:如果需要显示搜索文本在文件中的行数,可以使用参数-n

grep  -n "header" *.log

4: 如果搜索时需要忽略大小写问题,可以使用参数-i

grep -i "HEADER"  *.log

5: /var/app/下所有文件中包含header 关键字的都列出来:

grep -r “header” /var/app/

    原文作者:时光凉春衫薄
    原文地址: https://blog.csdn.net/qq_38656841/article/details/122395387
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞