linux系统下精确查找某个词语所在行的内容和所在的路径

记录一下在linux系统中精确查找某个关键词,同时显示关键词所在行内容和对应路径的方法
主要使用grep命令
[root@nathaniel ~]# useradd test -s /sbin/nologin
[root@nathaniel ~]# cp /etc/passwd .
[root@nathaniel ~]# cp /etc/group .
[root@nathaniel ~]# grep -ri "test" /root/
/root/group:test:x:1000:
/root/passwd:test:x:1000:1000::/home/test:/sbin/nologin
  • 参数解析:
    r :递归查找,用于被查找路径指向非文件类型时,必须使用该参数
    i :不区分大小写查找
  • 附linux下命令的使用及参数解析链接
    链接:link.
    原文作者:Nathaniel_Lee
    原文地址: https://blog.csdn.net/qq_45759063/article/details/108130022
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞