Answers:
如果您只想在包名称中搜索特定的字符串,则可以执行以下操作:
apt-cache search --names-only 'xxx'
这将返回其软件包名称中包含“ xxx ”的任何内容。
您还可以使用正则表达式:
apt-cache search --names-only 'php5$'
这将返回名称以php5结尾的任何软件包。
也可以使用不带--names-only的正则表达式。请参见apt-cache(8)手册页。
将搜索查询放在引号中,然后使用正则表达式。为了搜索任何版本的php-curl,我使用了;
sudo apt-cache search "php.*curl"
返回;
php5-curl - CURL module for php5
php-http-request2 - Provides an easy way to perform HTTP requests