zcat 到 grep 带文件名
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
顺便说一句,使用 zgrep
。 您想要做的事情可以通过 find 来完成
Use zgrep
BTW. what you're trying to do can be done with find
如果您使用 zgrep 而不是 zcat+grep (其作用相同),则可以像这样的选项执行此操作:
If you use zgrep instead of zcat+grep (which does the same), you do it like this option like this:
将
-t
选项传递给xargs
,使其在运行之前打印正在运行的命令(zcat
命令,包括文件名) 。 该命令被打印到 stderr,因此它不会干扰您的管道。Pass the
-t
option toxargs
, causing it to print the command it is running (thezcat
command, including the filename) before running it. The command is printed to stderr, so it will not interfere with your pipe.