我正在寻找一个终端命令,它不仅列出所有已安装的应用程序,而且还对每个应用程序进行简要描述

我正在寻找一个终端命令,它不仅列出所有已安装的应用程序,而且还对每个应用程序进行简要描述

我试过

apt list --installed 

这确实给了我所有应用程序的长长列表,但没有描述,我不知道我在看什么,所以,我不知道现在应该忽略什么以及应该研究哪些。

我也试过

apt list --installed | wc

但是,我收到错误代码 apt 没有稳定的 CLI 界面。在脚本中谨慎使用。在手册页中查看 apt 后,似乎出于某种原因我无法将这些命令连接在一起。我还尝试了aptlist、的组合,--installedapt-cache 失败了。我知道我远非熟练,并希望得到任何帮助。

答案1

apt list --installed --verbose

答案2

要列出已安装的软件包及其简要说明,

跑步:

aptitude search '~i'

如果你将终端尺寸设置为 24 X 132,则显示效果会很好

在此处输入图片描述

答案3

你看过了的结果dpkg -l吗?

如果必要/有用,其结果可以发送到文件;尽管您没有提供操作系统和发布详细信息,但我的快速测试是在我的发布版本上进行的*

guiverc@d960-ubu2:/de2900/lubuntu_64$   dpkg -l >blah
guiverc@d960-ubu2:/de2900/lubuntu_64$   view blah

Desired=Unknown/Install/Remove/Purge/Hold                                                                                                                                                     
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend                                                                                                                
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)                                                                                                                                    
||/ Name                                          Version                                     Architecture Description                                                                        
+++-=============================================-===========================================-============-==================================================================================>
ii  2048-qt                                       0.1.6-2build1                               amd64        mathematics based puzzle game                                                      
ii  a11y-profile-manager-indicator                0.1.11-0ubuntu4                             amd64        Accessibility Profile Manager - Unity desktop indicator                            
ii  abe                                           1.1+dfsg-4                                  amd64        side-scrolling game named "Abe's Amazing Adventure"                                
ii  abe-data                                      1.1+dfsg-4                                  all          side-scrolling game named "Abe's Amazing Adventure" -- data                        
ii  accountsservice                               0.6.55-3ubuntu2                             amd64        query and manipulate user account information                                      
ii  accountsservice-ubuntu-schemas                0.0.7+21.10.20210712-0ubuntu1               all          AccountsService schemas for Ubuntu                                                 
ii  acl                                           2.2.53-10ubuntu2                            amd64        access control list - utilities                                                    
ii  acpi-support                                  0.143build1                                 amd64        scripts for handling many ACPI events     

                                     

ETC

答案4

您可以使用手册页获取系统上所有命令的列表

man -s 1,6,8 -k .

第 1 部分是用户命令,第 6 部分是游戏,第 8 部分是管理员命令。

相关内容