为什么 apt-cache 搜索会找到与给定正则表达式不匹配的包?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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