Bash-5.3 distribution sources and documentation

This commit is contained in:
Chet Ramey
2025-07-03 16:15:36 -04:00
parent 6794b5478f
commit b8c60bc9ca
896 changed files with 174241 additions and 103591 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 $?