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
+10
View File
@@ -54,3 +54,13 @@ echo "coprocs created"
}
type mkcoprocs
unset -f mkcoprocs
# make sure that simple commands are printed without the coproc name
mkcoprocs ()
{
coproc cat -u - &
read -u ${COPROC[0]} msg
}
type mkcoprocs