Last sentence: comma rules

Andreas Nordal
2021-04-09 09:05:45 +02:00
parent 2b22ff96be
commit 5eb17a0490

@@ -66,4 +66,5 @@ What was meant is:
``` ```
filelist=("${filelist[@]}" "$filename") filelist=("${filelist[@]}" "$filename")
``` ```
Note: this syntax is compatible with older shells, in later shells (bash 3.1+ and zsh 4.2+) you can do: ```filelist+=("$filename")``` Note: This syntax is compatible with older shells;
in later shells (bash 3.1+ and zsh 4.2+), you can do `filelist+=("$filename")`.