Je trouve parfois bien pratique de consulter les pages man dans un navigateur. Cela permet de faire une recherche, aller et venir sur toute la page etc. Pour cela on peut utiliser soit Konqueror avec p.e. man:/ls soit configurer apache avec man2html en cgi-bin. Mais si on a n'a pas installé ni KDE ni apache, la fonction suivante peut faire l'affaire (à adapter à votre environement) :
function man2netscape () {
bzcat "$(man -w $1)" | man2html > /tmp/man/$1.html
netscape -remote "openurl(/tmp/man/$1.html)"
}
puis il suffit de faire
man2netscape smb.conf
et c'est bien plus facile de trouver un point particulier que dans un terminal.
# dhelp sous debian
Posté par saorge . Évalué à 1.
apt-cache show dhelp :
Description: online help system
Read all documentation with a WWW browser. dhelp builds a
index of all installed HTML documentation. You don't need
a WWW server to read the documentation. dhelp offers a
very fast search in the HTML documents.
.
You can access the online help system with the dhelp
program or with your browser. The URL to point your
browser at is http://localhost/doc/HTML/index.html(...)
if you have a WWW server installed or
file://localhost/usr/share/doc/HTML/index.html if not.
# emacs
Posté par koxinga . Évalué à 1.
# tu peux aussi taper man
Posté par palavas_trooper . Évalué à 1.
Suivre le flux des commentaires
Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.