Is there a difference when variables are referred to as $variableName and ${variableName} in bash?
|
feedback
|
|
From
The basic form of parameter expansion is ${parameter}. The value
of parameter is substituted. The braces are required when
parameter is a positional parameter with more than one digit, or
when parameter is followed by a character that is not to be
interpreted as part of its name.
Examples:
| |||||||
feedback
|
