TrumanWong

command

Call and execute the specified command

Supplementary instructions

command command calls the specified command and executes it. The shell function is not queried when the command is executed. The command command can only execute commands inside the shell.

grammar

command(parameter)

Parameters

Instruction: The instruction and parameters that need to be called.

Example

Use the command command to call and execute echo Linux, enter the following command:

command echo Linux #Call and execute shell internal instructions

After the above command is executed, the execution command echo Linux will be called, and the execution results are as follows:

Linux