原创文章地址https://blog.csdn.net/StepByStepTo/article/details/80851466#commentsedit

find . -type f -exec grep -Hn --color=auto $1 {} \;

find . -type f | xargs  grep -Hn --color=auto $1

find . -type f -name "*" | xargs  grep -Hn --color=auto $1

参数解释
find . “.” 表示当前目录 
-type f 表示普通文件类型,因为find还可以查找块文件,套接字文件等类型。 
-name "*.py"过滤搜索的文件名字特征。 
-exec [xx] {} \; 针对发现的内容执行XX命令。其中{}表示find的内容,注意 {} 和\之间有空格,\;表示分割不同的find内容。 
| xargs [xx] 把前一个命令的输出当做是xx 命令的输入。其中 ”|“表示通道。 
-Hn H表示显示文件名称, n表示显示行号。 
--color=auto 表示高亮显示输出。
 

Logo

更多推荐