apt show 在屏幕上显示所有可能性

apt show 在屏幕上显示所有可能性

每当apt show lib输入然后按两次 Tab 键时,就会显示以下可能性。

user@linux:~$ apt show lib
Display all 24553 possibilities? (y or n)
lib32asan0                                                        libisccfg-export160
lib32asan0-dbg                                                    libisc-export160
lib32asan2                                                        libisc-export169
*... output truncated ...*
lib32asan5-dbg-ppc64-cross                                        libisofs-dev
lib32asan5-dbg-s390x-cross                                        libisofs-doc
lib32asan5-dbg-sparc64-cross                                      libisoparser-java
--More--

有超过 20,000 种可能性,因此--More--页面末尾有一个选项。

是否可以在一个屏幕上打印所有这 20k 输出,以便我可以获得grep结果或将其重定向到文件而无需spacebar多次点击按钮?

答案1

使用此命令

apt-cache search [package name]

这里使用 apt-cache search lib

这将显示所有 lib 包,无需输入空格

希望有帮助:)

相关内容