Run command with arguments ignoring any shell function named command.
SYNTAX
command [-pVv] command [arguments …]
OPTIONS
-P Use a default path
-v Verbose
-V More verbose
Only shell builtin commands or commands found by searching the PATH are executed. If there is a shell function named ls, running &qt;command ls&qt;&qt; within the function will execute the external command ls instead of calling the function recursively.
The &qt;-p&qt;&qt; option means to use a default value for $PATH that is guaranteed to find all of the standard utilities. The return status in this case is 127 if command cannot be found or an error occurred, and the exit status of command otherwise.
If either the &qt;-V&qt;&qt; or &qt;-v&qt;&qt; option is supplied, a description of command is printed. The &qt;-v&qt;&qt; option causes a single word indicating the command or file name used to invoke command to be displayed; the &qt;-V&qt;&qt; option produces a more verbose description. In this case, the return status is zero if command is found, and non-zero if not.