Linux 查找文件并 grep 然后按日期列出

发布于 2024-11-09 11:10:00 字数 392 浏览 0 评论 0原文

我正在尝试查找名称为 formClass.php 且包含 checkCookie 字符串的文件,并且我想按日期列出文件,显示日期、大小、所有者和团体。这些文件位于我的主目录中。

我可以正常工作,但它不显示日期、所有者等...

find /home -name formClass.php -exec grep -l "checkCookie" {} \;

我想我可以将“trhg”添加到这样的列表中,但它不起作用:

find /home -name formClass.php -exec grep -ltrhg "checkCookie" {} \;

谢谢

I'm trying to find files with the name of formClass.php that contain a string of checkCookie and I want to list the files by date showing the date, size, owner and the group. The files are in my home directory.

I have this working, but it doesn't show date, owner, etc...

find /home -name formClass.php -exec grep -l "checkCookie" {} \;

I was thinking that I could add "trhg" to the list like this, but it didn't work:

find /home -name formClass.php -exec grep -ltrhg "checkCookie" {} \;

Thanks

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

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

发布评论

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

评论(3

后知后觉 2024-11-16 11:10:00

尝试find /home -name formClass.php -print0 | xargs -0 grep -l --null checkCookie | xargs -0 grep -l --null checkCookie | xargs -0 grep -l --null checkCookie | xargs -0 grep -l --null xargs -0 ls -l

Try find /home -name formClass.php -print0 | xargs -0 grep -l --null checkCookie | xargs -0 ls -l

冷︶言冷语的世界 2024-11-16 11:10:00
ls -lt `grep -lr --include=formClass.php "checkCookie" *`

查看 man ls 了解其他排序选项。

ls -lt `grep -lr --include=formClass.php "checkCookie" *`

Take a look at man ls for another sorting options.

夏末 2024-11-16 11:10:00

似乎有几种方法可以做到这一点。我发现了这个并且它对我有用。

find /home -name formClass.php -exec grep -l "checkCookie" {} \; | xargs ls -ltrhg

感谢您的其他建议。

It seems there are a few ways to do this. I found this and it worked for me.

find /home -name formClass.php -exec grep -l "checkCookie" {} \; | xargs ls -ltrhg

thank you for the other suggestions.

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