在 Unix 中搜索文件

发布于 2024-10-16 06:33:10 字数 199 浏览 3 评论 0原文

我需要在 unix 中搜索以“catalina”开头的文件,

 find ... what to be used effectively -name, -exec ? Whats the expression

而且我需要一次显示几个文件,然后显示更多文件。那里有大量的日志文件。我知道有一些表达,但忘记了......

I need to search a file in unix which starts with "catalina"

 find ... what to be used effectively -name, -exec ? Whats the expression

Also I need to show few files at a time, then show some more. There are huge set of log files in there. I know there is some expression, but forgot...

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

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

发布评论

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

评论(2

埖埖迣鎅 2024-10-23 06:33:10

find /path/to/search/in -name 'catalina*'

使用 iname 进行不区分大小写的匹配。

为了不被一长串文件淹没,请通过 less 进行过滤(追加 |less)。您还可以使用more 代替less

find /path/to/search/in -name 'catalina*'

Use iname to match case-insensitively.

To not be overwhelmed with a long list of files, filter through less (append |less). You can also use more instead of less.

故事还在继续 2024-10-23 06:33:10

如果 catalina 是文件名,则使用

find -name 'catalina*'

如果 catalina 是文件中包含的第一个单词,则使用

find -type f | xargs head -v -n 1 | grep -B 1 -A 1 -e '^catalina'

If catalina is the file name, then use

find -name 'catalina*'

If catalina is the first word contained in the file, then use

find -type f | xargs head -v -n 1 | grep -B 1 -A 1 -e '^catalina'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文