Shell Expansions

Expansion is performed on the command line after it has been split into tokens. There are seven kinds of expansion performed:

:    Expansion of expressions within braces.
:    Expansion of the ~ character.
:    How Bash expands variables to their values.
:    Using the output of a command as an argument.
:    How to use arithmetic in shell expansions.
:    A way to write and read to and from a command.
:    How the results of expansion are split into separate arguments.
:    A shorthand for specifying filenames matching patterns.
:    How and when quote characters are removed from words.

The order of expansions is: brace expansion; tilde expansion, parameter and variable expansion, arithmetic expansion, and command substitution (done in a left-to-right fashion); word splitting; and filename expansion.

On systems that can support it, there is an additional expansion available: process substitution. This is performed at the same time as tilde, parameter, variable, and arithmetic expansion and command substitution.

After these expansions are performed, quote characters present in the original word are removed unless they have been quoted themselves (quote removal).

Only brace expansion, word splitting, and filename expansion can increase the number of words of the expansion; other expansions expand a single word to a single word. The only exceptions to this are the expansions of "$@" and $* (see ), and "${name[@]}" and ${name[*]} (see ).

After all expansions, quote removal (see ) is performed.