command
est un bash builtin comme nous pouvons le voir :
seth@host:~$ type command
command is a shell builtin
Nous savons donc que command
est fourni par notre shell, bash. En fouillant dans man bash
, nous pouvons voir à quoi il sert :
(de man bash
) :
command [-pVv] command [arg ...]
Run command with args suppressing the normal shell function
lookup. Only builtin commands or commands found in the PATH are
executed. If the -p option is given, the search for command is
performed using a default value for PATH that is guaranteed to
find all of the standard utilities. If either the -V or -v
option is supplied, a description of command is printed. The -v
option causes a single word indicating the command or file name
used to invoke command to be displayed; the -V option produces a
more verbose description. If the -V or -v option is supplied,
the exit status is 0 if command was found, and 1 if not. If
neither option is supplied and an error occurred or command
cannot be found, the exit status is 127. Otherwise, the exit
status of the command builtin is the exit status of command.
Essentiellement, vous utiliseriez command
pour contourner la "recherche de fonction normale". Par exemple, si vous aviez une fonction dans votre .bashrc
:
function say_hello() {
echo 'Hello!'
}
Normalement, lorsque vous exécutez say_hello
dans votre terminal, bash trouverait la fonction nommée say_hello
dans votre .bashrc
avant de trouver, disons, une application nommée say_hello
. En utilisant :
command say_hello
bash contourne sa recherche de fonction normale et va directement aux commandes intégrées ou à votre $PATH
. Notez que cette recherche de fonction inclut également les alias. En utilisant command
, vous contournez à la fois les fonctions et les alias.
Si l'option -p
est fournie, bash contourne votre $PATH
personnalisé et utilise son propre chemin par défaut.
Les drapeaux -v
ou -V
font afficher une description (court pour -v
, long pour -V
) de la commande.
Remarque : Comme l'a souligné souravc dans les commentaires, une méthode plus simple pour trouver des informations sur les commandes intégrées au shell peut être trouvée ici : How to make `man` work for shell builtin commands and keywords?