I am confused by the usage of bracket, parentheses, curly braces in Bash, as well as the difference between their double or single forms. Is there a clear explanation?
Thanks and regards!
|
I am confused by the usage of bracket, parentheses, curly braces in Bash, as well as the difference between their double or single forms. Is there a clear explanation? Thanks and regards! |
||||
|
|
|
In Bash, The double bracket enables additional functionality. For example, you can use The braces, in addition to delimiting a variable name are used for parameter expansion so you can do things like:
Double parentheses are used for arithmetic operations:
and they enable you to omit the dollar signs on integer and array variables and include spaces around operators for readability. Single brackets are also used for array indices:
Curly brace are required for (most/all?) array references on the right hand side. ephemient's comment reminded me that parentheses are also used for subshells. And that they are used to create arrays.
|
|||||||||||||||||
|
4a. Braces (
4b. Braces are also used to execute a sequence of commands in the current shell context, e.g.
There is a subtle syntactic difference with |
|||||||||
|
|
Brackets if [ CONDITION ] Test construct if [[ CONDITION ]] Extended test construct Array[1]=element1 Array initialization [a-z] Range of characters within a Regular Expression Curly Brackets ${variable} Parameter substitution
${!variable} Indirect variable reference
{ command1; command2; . . . commandN; } Block of code
{string1,string2,string3,...} Brace expansion
{a..z} Extended brace expansion
{} Text replacement, after find and xargs
Parentheses ( command1; command2 ) Command group executed within a subshell Array=(element1 element2 element3) Array initialization result=$(COMMAND) Command substitution, new style >(COMMAND) Process substitution <(COMMAND) Process substitution Double Parentheses (( var = 78 )) Integer arithmetic var=$(( 20 + 5 )) Integer arithmetic, with variable assignment (( var++ )) C-style variable increment (( var-- )) C-style variable decrement (( var0 = var1<98?9:21 )) C-style trinary operation |
|||
|
|
|
I just wanted to add these from TLDP:
|
|||
|
|
|
The difference between test, [ and [[ is explained in great details in the BashFAQ.
And the conclusion:
|
|||
|
|