Самый быстрый способ считать справку на не установленная программа (я Чувствую себя Удачливым),

Что самый быстрый путь к информации о поиске о программе, которая в настоящее время не устанавливается?

Сегодня мне была нужна Ubuntu для напоминания мне о некотором событии и мне хотя, что Ubuntu могла быть столь же умной как Google 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'.

Прежде, чем установить я ожидал проверять, напоминают, действительно, в чем я нуждаюсь.

Конечно, info remind не помог (никакая потребность показать его вообще). man -k не был инструмент, полезный также:

$ man -k remind
calendar (1)         - reminder service

И рытье о том, что делает это man -k средний не было успешно также:

-k, --apropos              equivalent to apropos

Так, как Вы находите необходимые приложения из командной строки?

3
задан 3 November 2015 в 13:36

2 ответа

Существует также dman от пакет bikeshed .

sudo apt-get install bikeshed

Это позволяет Вам прочитать страницы руководства из Интернета без потребности установки соответствующих пакетов:

dman remind
6
ответ дан 1 December 2019 в 13:12
  1. Read онлайн страницы справочника.

  2. Используя apt-cache

    apt-cache show remind
    

    или

    apt-cache show remind | awk '/Description-en/ {print; a=1; next} a && /^ / {print; next} {a=0}'
    
  3. Все остальное включено в сам пакет.

    apt-get download remind
    dpkg -x *.deb remind
    man ./remind/usr/share/man/man1/rem.1.gz
    
<час>

Пример произвел

apt-cache show remind

Package: remind
Priority: optional
Section: universe/utils
Installed-Size: 411
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Ana Beatriz Guerrero Lopez <ana@debian.org>
Architecture: i386
Version: 03.01.15-1
Depends: libc6 (>= 2.7)
Suggests: tkremind, wyrd
Filename: pool/universe/r/remind/remind_03.01.15-1_i386.deb
Size: 190964
MD5sum: e476e0b4e49a211ad860cde57b1b6ea5
SHA1: b342c7f05e560aecc3c7bac9aa1ae1fef424121c
SHA256: 67f34f03723e03653fc25d119b680da1ab03bf28fc78d80c2a173184cbf682bc
Description-en: sophisticated calendar and alarm program
 Remind allows you to remind yourself of upcoming events and
 appointments.  Each reminder or alarm can consist of a message sent
 to standard output, or a program to be executed.
 .
 It also features: sophisticated date calculation, moon phases,
 sunrise/sunset, Hebrew calendar, alarms, PostScript output, tcl/tk
 front-end and proper handling of holidays.
 .
 Reminders can be created by the remind scripting language or by using
 the graphical frontend package "tkremind".
Description-md5: 5b163d21d42fbc03e201fdb61071c10d
Homepage: http://www.roaringpenguin.com/products/remind/
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu

apt-cache show remind | awk '/Description-en/ {print; a=1; next} a && /^ / {print; next} {a=0}'

Description-en: sophisticated calendar and alarm program
 Remind allows you to remind yourself of upcoming events and
 appointments.  Each reminder or alarm can consist of a message sent
 to standard output, or a program to be executed.
 .
 It also features: sophisticated date calculation, moon phases,
 sunrise/sunset, Hebrew calendar, alarms, PostScript output, tcl/tk
 front-end and proper handling of holidays.
 .
 Reminders can be created by the remind scripting language or by using
 the graphical frontend package "tkremind".
3
ответ дан 1 December 2019 в 13:12

Другие вопросы по тегам:

Похожие вопросы: