如何搜索字符串“--branch”使用确认?

发布于 2024-12-12 00:33:20 字数 257 浏览 0 评论 0原文

在 ack 中,您可以使用 -Q 选项来转义搜索字符串中的所有字符,但如果您使用的搜索字符串看起来像 ack 的选项,那么这似乎不起作用。

我正在尝试在一组文件中搜索字符串“--branch”。所以我尝试这个 ack 命令

ack -a -Q '--branch'

它响应未知选项:分支。它将我的搜索字符串视为要解释的选项。有谁知道我可以使用哪些转义字符来将 --branch 用作字符串?

In ack you can use the -Q option to escape all the characters in your search string, but that doesn't seem to work if the search string you are using looks like an option for ack.

I am trying to search a group of files for the string '--branch'. So I try this ack command

ack -a -Q '--branch'

It responds Unknown option: branch. It is seeing my search string as an option to be interpreted. Does anyone know what escape characters I can use to use the --branch as a string?

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

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

发布评论

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

评论(2

闻呓 2024-12-19 00:33:20

Ack uses the Getopt::Long module to process command line arguments, so it supports the -- option to indicate that you want option processing to end at that point in the argument list.

ack -a -- --branch

should therefore work (it does for me).

救星 2024-12-19 00:33:20

也许使用 --match PATTERN 选项?

http://betterthangrep.com/

Maybe with --match PATTERN option?

http://betterthangrep.com/

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