阅读有关未安装程序的帮助的最快方法(我感觉很幸运)

ana*_*nik 3 command-line ux

在当前未安装的程序上查找信息的最快方法是什么?

今天我需要 Ubuntu 来提醒我一些事件,我认为 Ubuntu 可以像谷歌的I'm Feeling Lucky按钮一样聪明。但不幸的是,这不起作用:

$ remind
The program 'remind' is currently not installed. You can install it by typing:
sudo apt-get install remind
$ man remind
No manual entry for remind
$ help remind
bash: help: no help topics match `remind'.  Try `help help' or `man -k remind'
or `info remind'.
Run Code Online (Sandbox Code Playgroud)

在安装之前,我希望检查一下提醒是否真的是我需要的。

当然info remind没有帮助(根本不需要展示它)。man -k工具也没有帮助:

$ man -k remind
calendar (1)         - reminder service
Run Code Online (Sandbox Code Playgroud)

并且挖掘它的man -k含义也没有成功:

-k, --apropos              equivalent to apropos
Run Code Online (Sandbox Code Playgroud)

那么,您如何从命令行找到所需的应用程序?

And*_*ini 6

还有dman来自自行车棚包。

sudo apt-get install bikeshed
Run Code Online (Sandbox Code Playgroud)

它可以让您从互联网上阅读手册页,而无需安装相应的软件包:

dman remind
Run Code Online (Sandbox Code Playgroud)