O que é 'comando' no bash?

2

Se eu digitar command no meu terminal, eu não recebo "comando não encontrado", e o código de saída é 0. Suponho que isso significa que command realmente faz alguma coisa no bash.

Além disso, command -h retorna:

bash: command: -h: invalid option
command: usage: command [-pVv] command [arg ...]

Para que é usado?

    
por Alberto Rivera 29.10.2016 / 03:00

2 respostas

5

De help command :

$ help command
command: command [-pVv] command [arg ...]
    Execute a simple command or display information about commands.

    Runs COMMAND with ARGS suppressing  shell function lookup, or display
    information about the specified COMMANDs.  Can be used to invoke commands
    on disk when a function with the same name exists.

    Options:
      -p    use a default value for PATH that is guaranteed to find all of
      the standard utilities
      -v    print a description of COMMAND similar to the 'type' builtin
      -V    print a more verbose description of each COMMAND

    Exit Status:
    Returns exit status of COMMAND, or failure if COMMAND is not found.

Como uma observação mais geral, em vez de usar apenas -h quando você não sabe o que um comando faz, tente:

type -a command

O que neste caso teria dito que é um shell embutido.

help command

é bom para builtins de shell. Para outros comandos (e também para builtins do shell, na verdade), tente

man somecommand

Além disso, -h não é necessariamente a opção "ajuda". Se você não sabe o que um comando faz, isso pode não ser uma suposição segura a ser feita. Mais seguro é --help .

somecommand --help

(Comandos comuns em que -h é uma opção válida, mas não significa "ajuda" são ls , free , df , du . Todos esses são informativos apenas, mas a suposição de que -h apenas significará "ajuda" é uma suposição perigosa.)

    
por 29.10.2016 / 03:28
0

command como quase todo o resto O Unix / Linux está documentado em man pages. Digitar man command fornece o manual para bash , que tem uma subseção dedicada ao comando interno command :

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 filename 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.

    
por 29.10.2016 / 03:27