Difference between pages "HardwAre" and "$("

From Linuxintro
(Difference between pages)
imported>ThorstenStaerk
(Redirected page to Hardware)
 
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]...")
 
Line 1: Line 1:
#REDIRECT [[Hardware]]
+
$( 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]] [[package]]s' contents.

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.