如何在 APT 手册页中搜索安装选项

如何在 APT 手册页中搜索安装选项

我读了答案无线 - 如何检查当前安装的 WiFi 驱动程序的信息? - 询问 Ubuntu并学习命令

sudo apt-get install -y hardinfo 

-y然后我尝试在man页面中找到该选项

me@alpha:~$ man apt-get | grep '-y'
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
me@alpha:~$ man apt | grep '-y'
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
me@alpha:~$ man install | grep '-y'
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
me@alpha:~$ man 'apt install'
No manual entry for apt install

我怎样才能获得有关选项的手册apt install

答案1

该命令实际上apt不是install。可以通过以下方式查看手册页:

man apt

man apt-get

在此特定情况下,在sudo apt install <program-name>继续之前会询问您是否确实要安装。该-y选项可防止 apt 询问您是否要安装 - 它假定“是”

相关内容