grep 忽略 vim 临时文件

发布于 2024-10-17 05:03:58 字数 40 浏览 5 评论 0原文

使用 grep 进行搜索时忽略 vim 临时文件的最佳方法是什么?

What is the best way to ignore vim temporary files when doing a search with grep?

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

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

发布评论

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

评论(3

半葬歌 2024-10-24 05:03:58
grep --exclude=*~

我相信这应该有效。

grep --exclude=*~

I believe that should work.

苹果你个爱泡泡 2024-10-24 05:03:58

我发现 Ack 可以替代我的 grep 需求。无需担心默认情况下排除一堆文件类型或目录。您始终可以设置 .ackrc 文件以添加更多文件类型或更改 ack 的默认行为。

I find Ack to be a drop in replacement for my grepping needs. No need to worry about excluding a bunch of file types or directories by default. You can always setup an .ackrc file in order to add more file types or alter ack's default behavior.

过度放纵 2024-10-24 05:03:58

您还没有说过这一点,但我怀疑您正在搜索目录树。

这可能不是最优雅的解决方案,但您可以使用“find”的输出。

我经常发现自己递归地 grep 一个目录树,如下所示:

grep <needle> `find . \( -name '*.cpp' -o -name '*.h' \) -print`

你当然可以这样做:

grep <needle> `find . \! -name '.??*swp' -print`

You haven't said this but I suspect that you're grepping through a directory tree.

This may not be the most elegant solution but you might use the output of 'find'.

I often find myself recursively grepping a directory tree like this:

grep <needle> `find . \( -name '*.cpp' -o -name '*.h' \) -print`

You could certainly do something like:

grep <needle> `find . \! -name '.??*swp' -print`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文