- Command substitution
-
In computing, command substitution is a facility originally introduced in the Unix shells that allows a command to be run and its output to be pasted back on the command line as arguments to another command. Shells typically do this by creating a child process to run the first command with its standard output piped back to the shell, which reads that output, parsing it into words separated by whitespace. Because the shell can't know it has all the output from the child until the pipe closes or the child dies, it waits until then before it starts another child process to run the second command.
Contents
Examples
This C shell example shows how one might search for all the C files containing the string
malloc
usingfgrep
and then edit any that are found using thevi
editor. The syntactical notation shown here,`
...`
, using backquotes as delimiters, is the original style and is supported by all the common Unix shells.#!/bin/csh vi `fgrep -l malloc *.c`
While very easy to type (an important factor for an interactive command processor) the backquote notation has been criticized[1] for being awkward to nest, putting one command substitution inside another, because both the left and the right delimiters are the same. To solve this problem, bash 2.0[2] and the Korn shell (ksh)[3] introduced an alternative notation,
$(
...)
, borrowing from the notational style used for variable substitution:#!/bin/bash vi $(fgrep -l malloc *.c)
History
Command substitution first appeared in the Bourne shell,[4] introduced with Unix 7th Edition, released in 1979, and has remained a characteristic of all later Unix shells. The feature has since been adopted in the programming languages Mythryl, Perl, PHP, and Ruby. It appears in Microsoft's cmd.exe under Windows, albeit only as part of the
for
command.Expression substitution
A related facility, expression substitution, is found in the languages Common Lisp and Scheme, invoked by using the comma-at operator in an expression marked with the backquote (or "quasiquote") operator, and in ABC, by using an expression enclosed between backquotes inside a text display (string literal). For example, the ABC command
WRITE '2 + 2 = `2+2`'
produces the output 2 + 2 = 4.In a sense this is the inverse of the eval function (in languages that have one): expression substitution turns an expression into a string, and eval turns a string into an expression.
See Also
- Process substitution
References
- ^ Unix Power Tools: 45.31 Nested Command Substitution.
- ^ Bash Prompt HOWTO: 3.3. Command Substitution.
- ^ Rosenblatt, Bill; Arnold Robbins (2002). Learning the Korn Shell (2 ed.). O'Reilly Media, Inc.. p. 127. ISBN 9780596001957. http://books.google.com/books?hl=en&lr=&id=5nMCY272chUC. Retrieved 2010-07-20. "The syntax of command substitution is: $(Unix command) The command inside the parenthesis is run, and anything the command writes to standard output (and to standard error) is returned as the value of the expression."
- ^ Dahdah, Howard. The A-Z of Programming Languages: Bourne shell, or sh, An in-depth interview with Steve Bourne, creator of the Bourne shell, or sh, Computerworld, March 5, 2009.
Categories:- Programming language topics
- Unix programming tools
Wikimedia Foundation. 2010.