linux查找包含指定关键字的文件

 
命令形式:
grep -R --include="*.cpp" key dir

命令含义:
在dir目录下递归查找所有.cpp文件中的关键字key


举例:
grep -r --include="*.h" _GMainLoop /
grep -r --include="*.*" _GMainLoop /

在application目录下递归查找所有.sh文件中的关键字 81,显示所属行并将查找到的结果覆盖写入/root/t.txt中
grep -R -n --include="*.sh"  81 ./application  >/root/t.txt
    原文作者:南沙的星星
    原文地址: https://blog.csdn.net/weixin_41783910/article/details/122615631
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞