Table of Contents

Shell - Compound Commands

About

A compound command is one of the following:

Type

(list)

(list)

where

{list}

{ list; }

where:

((expression))

((expression))

where:

This is exactly equivalent to/alias to let

let "expression"

[[ expression ]]

See Bash - Conditional Expression

Expressions may be combined using the following operators, listed in decreasing order of precedence:

( expression )

Returns the value of expression. This may be used to override the normal precedence of operators.