zcat 到 grep 带文件名

发布于 2024-07-15 01:39:24 字数 166 浏览 8 评论 0原文

ls -ltr|grep 'Mar  4'| awk '{print $9 }'|xargs zcat -fq |grep  12345

我现在使用此命令列出包含我的数字字符串的记录,我怎样才能获得此命令来打印在其中找到字符串的文件的名称?

谢谢

ls -ltr|grep 'Mar  4'| awk '{print $9 }'|xargs zcat -fq |grep  12345

I'm now using this command to list the records that contain my numeric string how can i alos get this command to print the name of the file the strings were found in?

thanks

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

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

发布评论

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

评论(3

羁〃客ぐ 2024-07-22 01:39:24

顺便说一句,使用 zgrep

。 您想要做的事情可以通过 find 来完成

find  -newermt 'Mar 4' -and ! -newermt 'Mar 5' -exec zgrep -l '12345' {} \;

Use zgrep

BTW. what you're trying to do can be done with find

find  -newermt 'Mar 4' -and ! -newermt 'Mar 5' -exec zgrep -l '12345' {} \;
烟柳画桥 2024-07-22 01:39:24

如果您使用 zgrep 而不是 zcat+grep (其作用相同),则可以像这样的选项执行此操作:

ls -ltr | grep 'Mar 4' | awk '{print $9}' | xargs zgrep 12345

If you use zgrep instead of zcat+grep (which does the same), you do it like this option like this:

ls -ltr | grep 'Mar 4' | awk '{print $9}' | xargs zgrep 12345
梦纸 2024-07-22 01:39:24

-t 选项传递给 xargs,使其在运行之前打印正在运行的命令(zcat 命令,包括文件名) 。 该命令被打印到 stderr,因此它不会干扰您的管道。

Pass the -t option to xargs, causing it to print the command it is running (the zcat command, including the filename) before running it. The command is printed to stderr, so it will not interfere with your pipe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文