diff options
Diffstat (limited to 'doc/bash-style.cli')
-rw-r--r-- | doc/bash-style.cli | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/bash-style.cli b/doc/bash-style.cli index 3f620f4..4edc984 100644 --- a/doc/bash-style.cli +++ b/doc/bash-style.cli @@ -253,10 +253,11 @@ rm -f \"$dir/$name\".* Note also that globbing is not performed in the \c{[[ ]]} context so this is ok: +\ if [[ -v array[0] ]]; then ... fi - +\ \N|One exception to this quoting rule is arithmetic expansion (\c{$((\ ))}): Bash treats it as if it was double-quoted and, as a result, any inner quoting |