grep 忽略 vim 临时文件
使用 grep 进行搜索时忽略 vim 临时文件的最佳方法是什么?
What is the best way to ignore vim temporary files when doing a search with grep?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用 grep 进行搜索时忽略 vim 临时文件的最佳方法是什么?
What is the best way to ignore vim temporary files when doing a search with grep?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我相信这应该有效。
I believe that should work.
我发现 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.
您还没有说过这一点,但我怀疑您正在搜索目录树。
这可能不是最优雅的解决方案,但您可以使用“find”的输出。
我经常发现自己递归地 grep 一个目录树,如下所示:
你当然可以这样做:
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:
You could certainly do something like: