cat 和 grep 匹配的文件名和行号

发布于 2024-07-14 09:58:13 字数 88 浏览 10 评论 0原文

我的代码

$  *.php | grep google

如何打印每个匹配项旁边的文件名和行号?

My code

$  *.php | grep google

How can I print the filenames and linenumbers next to each match?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

心欲静而疯不止 2024-07-21 09:58:13
grep google *.php

如果你想跨越多个目录:(

find . -name \*.php -print0 | xargs -0 grep -n -H google

如注释中所述,如果 xargs 只出现一个剩余文件,-H 很有用)

grep google *.php

if you want to span many directories:

find . -name \*.php -print0 | xargs -0 grep -n -H google

(as explained in comments, -H is useful if xargs comes up with only one remaining file)

忘羡 2024-07-21 09:58:13

你不应该这样做

$ *.php | grep

这意味着“运行第一个 PHP 程序,将其余通配符的名称作为参数,然后在输出上运行 grep”。

它应该是:

$ grep -n -H "google" *.php

-n 标志告诉它执行行号,-H 标志告诉它显示文件名,即使只有文件。 如果正在搜索多个文件,Grep 将默认显示文件名,但您可能希望确保输出一致,无论有多少个匹配文件。

You shouldn't be doing

$ *.php | grep

That means "run the first PHP program, with the name of the rest wildcarded as parameters, and then run grep on the output".

It should be:

$ grep -n -H "google" *.php

The -n flag tells it to do line numbers, and the -H flag tells it to display the filename even if there's only file. Grep will default to showing the filenames if there are multiple files being searched, but you probably want to make sure the output is consistent regardless of how many matching files there are.

还在原地等你 2024-07-21 09:58:13
grep -RH "google" *.php
grep -RH "google" *.php
流云如水 2024-07-21 09:58:13

请查看 http://betterthangrep.com 上的 ack。 您正在尝试的 ack 的等效项是:

ack google --php

Please take a look at ack at http://betterthangrep.com. The equivalent in ack of what you're trying is:

ack google --php
明天过后 2024-07-21 09:58:13
find ./*.php -exec grep -l 'google' {} \; 
find ./*.php -exec grep -l 'google' {} \; 
塔塔猫 2024-07-21 09:58:13

使用“man grep”查看其他功能。

for i in $(ls *.php); do  grep -n --with-filename "google" $i; done;

Use "man grep" to see other features.

for i in $(ls *.php); do  grep -n --with-filename "google" $i; done;
蓝眼泪 2024-07-21 09:58:13
find . -name "*.php" -print | xargs grep -n "searchstring"
find . -name "*.php" -print | xargs grep -n "searchstring"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文