Jump to content

Command (computing)

From Wikipedia, the free encyclopedia

In computing, a command is an instruction received via an external interface that directs the behavior of a computer program. Commonly, commands are sent to a program via a command-line interface, a script, a network protocol, or as an event triggered in a graphical user interface.

Many commands support arguments to specify input and to modify default behavior. Terminology and syntax varies but there are notable common approaches. Typically, an option or a flag is a name (without whitespace) with a prefix such as dash or slash that modifies default behavior. An option might have a required value that follows it. Typically, flag refers to an option that does not have a following value. A parameter is an argument that specifies input to the command and its meaning is based on its position in the command line relative to other parameters; generally ignoring options. A parameter can specify anything, but often it specifies a file by name or path.

The term command is sometimes also used for internal program instructions, but often other terms are more appropriate such as statement, expression, function, or conditional.[1] For example, printing a message in Bash is via the command printf, while in Python it is via the function print().[2] Further, some aspects of adjacent technology are conflated with commands. For example, conditional logic in Bash and Python is called an expression[3][4] and statements in Java.[5]

Examples

[edit]

A notable context in which commands are prevalent is the operating system shell. Commonly, the shell dispatches a command to a program that has a file name matching the first parameter. In a Unix shell (such as bash and many related variants), the match must be exact including case. The following bash command changes the working directory to /home/pete by invoking the program cd:

cd /home/pete

The following bash command writes "Hello World" via program echo to standard output – typically the terminal. Quotes around the two words indicate that the phrase is treated as a single parameter.

echo "Hello World"

The following demonstrates how the default behavior of a command is modified with a switch. The switch -e causes the command to treat characters prefixed with a backslash as the associated control character. In this case \t results in a tab character.

echo -e "Hello\tWorld"

In shells such as command prompt, DOS, and OS/2 some commands are built-in; are not implemented as a separate program. But, if a command is not built-in, then the shell dispatches to a program that has an executable extension (such as .exe) and base name matching the first parameter ignoring case. The following command prompt command displays the content of file readme.txt via the built-in command type.[6]

type readme.txt

The following command prompt command lists the contents of the current directory via built-in command dir. The switch /Q modifies default behavior to include owner information.[7]

dir /Q

See also

[edit]

References

[edit]
  1. ^ Maurizio Gabbrielli, Simone Martini (2010). Programming Languages - Principles and Paradigms. Springer London, 6.3.2 Conditional Commands, p. 140
  2. ^ "Built-in Functions - print". python.org. Retrieved 23 October 2023.
  3. ^ "Conditional expressions". python.org. Retrieved 23 October 2023.
  4. ^ "Bash Conditional expressions". gnu.org. Retrieved 23 October 2023.
  5. ^ "The if-then and if-then-else Statements". oracle.com. Retrieved 23 October 2023.
  6. ^ "Type - Display a text file - Windows CMD". SS64.com. Retrieved 14 March 2019.
  7. ^ "DIR - list files and folders - Windows CMD". SS64.com. Retrieved 14 March 2019.
[edit]