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
@@ -237,6 +237,15 @@ POSIX=/usr/posix
expect '<10>'
recho ${#POSIX}
# this was a problem through bash-5.2 -- it would skip random numbers because
# of multiple calls to find_variable
RANDOM=42
expect '<5>'
recho ${#RANDOM} # 17772
declare -i RANDOM=42
expect '<5>'
recho ${#RANDOM} # 17772
# remove shortest trailing match
x=file.c
expect '<file.o>'