the-art-of-command-line icon indicating copy to clipboard operation
the-art-of-command-line copied to clipboard

fix a missed sentence and paragraph

Open leollon opened this issue 5 years ago • 1 comments

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. (For example, a range like {1..20} cannot be expressed with variables using {$a..$b}. Use seq or a for loop instead, e.g., seq $a $b or for((i=a; i<=b; i++)); do ... ; done.)

Brace expansion is performed before any other expansion.

A sentence and paragraph do not have translated text.

leollon avatar Jun 03 '19 08:06 leollon

@Psycho7

leollon avatar Jun 06 '19 02:06 leollon