$(

From Linuxintro
Revision as of 13:47, 24 November 2012 by imported>ThorstenStaerk (Created page with "$( is the start of a bash operator that replaces the content of $() with the output of the content executed as a command. '''Example:''' rpm -ql $(rpm -qa) Lists all [[rpm]...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

$( is the start of a bash operator that replaces the content of $() with the output of the content executed as a command.

Example:

rpm -ql $(rpm -qa)

Lists all rpm packages' contents.