Bash operators

From Linuxintro
Revision as of 13:56, 30 March 2009 by imported>ThorstenStaerk

$()

The operator $() in the bash shell is replaced by the output of the command enclosed in the parentheses. It is equivalent to backticks (``), but can be cascaded more easily.

Examples:

rpm -ql $(rpm -qa)
for i in $(seq 1 1 100); do echo $i; done