Précédent Suivant Index

7   L'aide

7.1   Le manuel en ligne man

man est un programme qui vous donnera une aide sur la plupart des programmes installés (programmes UNIX).

On l'appelle en indiquant le nom de la commande pour laquelle on souhaite avoir des informations (par exemple man rmdir) ou en indiquant un mot anglais qui correspond à ce que l'on cherche à faire et pas nécessairement un nom de commande (par exemple « man -k caml »). Voici le résultat de l'exécution de ces deux exemples d'appel de man :

  $ man rmdir
  RMDIR(1)                                                 RMDIR(1)


  NAME
         rmdir - remove empty directories

  SYNOPSIS
         rmdir [-p] [--parents] [--help] [--version] dir...

  DESCRIPTION
         This  manual  page  documents  the  GNU  version of rmdir.
         rmdir removes each given empty  directory.   If  any  non-
         option argument does not refer to an existing empty direc-
         tory, it is an error.

     OPTIONS
         -p, --parents
                Remove any parent directories that  are  explicitly
                mentioned  in  an  argument,  if  they become empty
                after the argument file is removed.

         --help Print a usage message on standard output  and  exit
                successfully.

         --version
                Print  version  information on standard output then
                exit successfully.

  FSF                     GNU File Utilities                      1

  $ man -k compiler
  camlc (1)            - The Caml Light compiler
  coqc (1)             - The Coq compiler
  bootpef (8)          - BOOTP Extension File compiler
  cccp, cpp (1)        - The GNU C-Compatible Compiler Preprocessor.
  compile_et (1)       - error table compiler
  fort77 (1)           - invoke f2c Fortran translator transparently, like a compi  ler
  g++ (1)              - GNU project C++ Compiler
  gcc, g++ (1)         - GNU project C and C++ Compiler (egcs - 1.0.3)
  gcc, g++ (1)         - GNU project C and C++ Compiler (v2.7)
  guavac (1)           - a free Java compiler
  ocamlc (1)           - The Objective Caml bytecode compiler
  ocamlcp (1)          - The Objective Caml profiling compiler
  ocamlopt (1)         - The Objective Caml native-code compiler
  tic (1m)             - the terminfo entry-description compiler
  diagnostics (3)      - Perl compiler pragma to force verbose warning diagnostics
  less (3)             - perl pragma to request less of something from the compiler

7.2   Les manuels en ligne

Le manuel en ligne de Caml Light est disponible en local sur votre machine, ainsi que ceux d'un certain nombre d'applications que vous êtes susceptibles d'utiliser. Pour cela, lancer netscape lors de votre premier TD et familiarisez-vous avec ce programme qui est facile d'utilisation et qui pourra vous servir à l'occasion d'outil pour lire ou envoyer du courrier électronique.

Bien des commandes affichent une certaine quantité d'informations si on les appelle sans argument, ou avec l'option -h ou -? ou encore --help.


Précédent Suivant Index