command
é um bash incorporado como podemos ver:
seth@host:~$ type command
command is a shell builtin
Portanto, sabemos que command
é fornecido pelo nosso shell, bash. Procurando em man bash
, podemos ver qual é o seu uso:
(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.
Essencialmente, você usaria command
para ignorar a "pesquisa de função normal". Por exemplo, digamos que você tenha uma função em .bashrc
:
function say_hello() {
echo 'Hello!'
}
Normalmente, quando você executa say_hello
no bash do seu terminal, a função chamada say_hello
no seu .bashrc
antes encontrou, digamos, um aplicativo chamado say_hello
. Usando:
command say_hello
faz o bash ignorar sua função normal de pesquisa e ir direto para o built-in ou seu $PATH
. Note que esta pesquisa de função também inclui aliases. Usar command
ignorará as funções e os aliases.
Se a opção -p
for fornecida, o bash ignora seu $PATH
personalizado e usa seu próprio padrão.
O -v
ou -V
flags bash imprime uma descrição (abreviação de -v
, longa para -V
) do comando.
Nota: Como souravc apontado nos comentários, um método mais fácil para encontrar informações sobre builtins de shell pode ser encontrado aqui: Como fazer o 'man' funcionar para comandos e palavras-chave embutidos no shell?