为什么 apt-cache 搜索会找到与给定正则表达式不匹配的包?

发布于 2024-09-03 13:45:48 字数 346 浏览 5 评论 0原文

我在 linux bash 上运行了以下命令:

apt-cache search 'hex.*(view|edit)'

我的目的是查找名称/描述包含模式“hex.*(view|edit)”的任何软件包。但在结果中我得到了这个:

kipi-plugins - image manipulation/handling plugins for KIPI aware programs

这怎么可能出现在结果列表中?我在这个结果中没有看到任何匹配的字符串。这是 apt-cache search 命令的错误吗?或者我是否误解了该命令如何使用正则表达式?

I ran the following command at linux bash:

apt-cache search 'hex.*(view|edit)'

My intention was to find any software packages whose name/description contains the pattern 'hex.*(view|edit)'. But among the results I got this:

kipi-plugins - image manipulation/handling plugins for KIPI aware programs

How could this be in the results list? I didn't see any matching string in this result. Is this a bug of the apt-cache search command? Or do I mis-understand how the regular expression is used by this command?

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

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

发布评论

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

评论(1

携君以终年 2024-09-10 13:45:48

search 对包描述中的所有文本进行全文搜索,而不仅仅是名称。如果您只想要名称,可以使用 --names-only

search does a full text search on all text in a package description, not just the name. If you want names only, you can use --names-only

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