Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
informatique:linux:commandes:apropos [2020/04/04 22:49] – ↷ Page déplacée de informatique:commandes:apropos à informatique:linux:commandes:apropos jside | informatique:linux:commandes:apropos [2023/01/11 17:55] (Version actuelle) – Cédric ABONNEL | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
+ | ====== apropos ====== | ||
+ | |||
+ | |||
+ | La commande '' | ||
+ | |||
+ | Par exemple '' | ||
+ | |||
+ | |||
+ | <code BASH> | ||
+ | $ apropos copy | ||
+ | debconf-copydb (1) - copier une base de données debconf | ||
+ | arm-linux-gnueabihf-objcopy (1) - copy and translate object files | ||
+ | bcopy (3) - copy byte sequence | ||
+ | copy_file_range (2) - Copy a range of data from one file to another | ||
+ | copysign (3) - copy sign of a number | ||
+ | copysignf (3) - copy sign of a number | ||
+ | copysignl (3) - copy sign of a number | ||
+ | cp (1) - copy files and directories | ||
+ | cpgr (8) - copy with locking the given file to the password or group file | ||
+ | cpio (1) - copy files to and from archives | ||
+ | cppw (8) - copy with locking the given file to the password or group file | ||
+ | dd (1) - convert and copy a file | ||
+ | </ | ||
+ | |||
+ | ====== Des astuces ====== | ||
+ | |||
+ | > Limiter la recherche à une section de la documentation | ||
+ | |||
+ | Pour afficher les commandes de l' | ||
+ | < | ||
+ | apropos copy -s 1 | ||
+ | </ | ||
+ | |||
+ | > Rechercher avec plusieurs mots clés | ||
+ | |||
+ | Par défaut, le recherche de plusieurs mots clés et conditionnée par un **OU**. Par exemple, la ligne de commande '' | ||
+ | |||
+ | Pour effectuer une recherche avec tous les mots clé inclus dans la recherche, il faut utiliser le paramètre '' | ||
+ | |||
+ | < | ||
+ | $ apropos -s 1 -a copy file | ||
+ | cp (1) - copy files and directories | ||
+ | cpio (1) - copy files to and from archives | ||
+ | dd (1) - convert and copy a file | ||
+ | i686-linux-gnu-objcopy (1) - copy and translate object files | ||
+ | install (1) - copy files and set attributes | ||
+ | mcopy (1) - copy MSDOS files to/from Unix | ||
+ | objcopy (1) - copy and translate object files | ||
+ | rcp (1) - secure copy (remote file copy program) | ||
+ | rsync (1) - a fast, versatile, remote (and local) file-copying tool | ||
+ | scp (1) - secure copy (remote file copy program) | ||
+ | </ | ||
+ | |||
+ | |||