difference between braces and normal brackets in bash?

6,894

Solution 1

Braces are used for parameter expansion (${foo%123}), brace expansion in either alternate ({foo,bar}) or sequence forms ({1..25}), or in blocks of code ({ foo ; bar ; }).

Square brackets are used as comparison commmands ([ "$foo" -lt 3 ], [[ $bar =~ ^123 ]]), As a range or character class in a glob (ba[rz], foo[[:alnum:]], qu[[=u=]]x), as part of an array assignment (foo=([2]=3 4 5), foo[42]=bar), or in parameter expansion when dealing with an array (${foo[@]}).

In other words, they're completely different.

Solution 2

http://ss64.com/bash/syntax-brackets.html

Share:
6,894

Related videos on Youtube

Admin
Author by

Admin

Updated on September 17, 2022

Comments

  • Admin
    Admin almost 2 years

    what is the difference between braces and normal brackets in bash?

    FYI... I did not get it in the related questions list and also not able to locate it in questions search. Please point me to the question if it has been already asked.

    • John Gardeniers
      John Gardeniers about 14 years
      Very creative terminology.