Bash-5.3-alpha release

This commit is contained in:
Chet Ramey
2024-04-22 10:33:38 -04:00
parent f3b6bd1945
commit 622d318652
700 changed files with 136534 additions and 96420 deletions
+9
View File
@@ -32,3 +32,12 @@ bar[1]=set
typeset -a qux
[[ -v qux ]] || echo qux: unset array: ok
[[ -v qux[0] ]] || echo qux: unset array element 0: ok
unset -v a
a[1]=set
[[ -v a ]] ; echo $?
[[ -v a[1] ]] ; echo $?
[[ -v a[@] ]] ; echo $?
[[ ${#a[@]} > 0 ]]; echo $?