A maneira mais rápida de ler ajuda no programa não instalado (I'm Feeling Lucky)

3

Qual é a maneira mais rápida de pesquisar informações sobre um programa que não está instalado atualmente?

Hoje eu precisei do Ubuntu para me lembrar de algum evento, e achei que o Ubuntu poderia ser tão inteligente quanto o botão I'm Feeling Lucky do Google. Mas infelizmente isso não funcionou:

$ 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'.

Antes de instalar eu esperava verificar é lembrar é realmente o que eu preciso.

É claro que info remind não ajudou (não é necessário mostrá-lo). man -k não foi útil para ferramentas:

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

E saber o que significa man -k não teve sucesso também:

-k, --apropos              equivalent to apropos

Então, como você encontra os aplicativos necessários na linha de comando?

    
por anatoly techtonik 03.11.2015 / 11:36

2 respostas

6

Há também dman do pacote bikeshed .

sudo apt-get install bikeshed

Ele permite que você leia páginas de manual da internet, sem a necessidade de instalar os pacotes correspondentes:

dman remind
    
por Andrea Corbellini 03.11.2015 / 12:03
3
  1. Leia as páginas de manual on-line .

  2. Usando apt-cache

    apt-cache show remind
    

    ou

    apt-cache show remind | awk '/Description-en/ {print; a=1; next} a && /^ / {print; next} {a=0}'
    
  3. Tudo o resto está incluído no próprio pacote.

    apt-get download remind
    dpkg -x *.deb remind
    man ./remind/usr/share/man/man1/rem.1.gz
    

Exemplo de saída

apt-cache show remind

Package: remind
Priority: optional
Section: universe/utils
Installed-Size: 411
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Ana Beatriz Guerrero Lopez <[email protected]>
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".
    
por A.B. 03.11.2015 / 11:39