Difference between revisions of "$("

From Linuxintro
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]...")
 
(No difference)

Latest revision as of 13:47, 24 November 2012

$( 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.