Table of Contents

Bash - Expansion

About

This article is about expansion in Bash.

An expansion is the replacement of a special token in your code by the result of the expansion during code execution.

It's performed on the command line after it has been split into words.

There are seven kinds of expansion performed:

Order

The order of expansions is:

On systems that can support it, there is an additional expansion available:

Word change

Expansions can be use to change the number of word (token) processed. See Shell - (Word | Token | Field)