I am scratching my head on this one, can't find the bash reference talking about it.
In the code below
host_color=${uphost}_host_color
host_color=${!host_color}
What is the second line doing ? what does the !operator do in this case ?
|
I am scratching my head on this one, can't find the bash reference talking about it. In the code below
What is the second line doing ? what does the !operator do in this case ? |
|||
|
|
|
That is a short form for indirect references.
The seemingly similar construction ${!foo*} expands to the names of all variables whose name begin with foo:
|
|||||
|
|
From the bash manual:
|
|||||||||
|