如何通过执行“能力搜索”仅显示已安装的软件包?


26

执行aptitude search pattern命令后,我只需要在搜索结果中看到已安装的软件包。有什么办法吗?

Answers:


37

添加~i(简称?installed)来匹配已安装的软件包,其名称中包含bash

aptitude search '~i bash'

匹配其描述包含bash

aptitude search '~i ~d bash'

限制为安装的:

aptitude search '!~i bash'

4

我通常这样做dpkg -l|fgrep …。它算吗?

UPD。aptitude search '?narrow(?installed, …)'

(但是我似乎还是更喜欢dpkg -l);)


谢谢。有什么办法也可以使用该aptitude命令吗?
Meysam 2013年

@Meysam,请参阅UPD。
poige
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.