On Wednesday, January 29, 2025, Muhammed Mahmood via Bug reports for the GNU Bourne Again SHell <bug-bash@gnu.org> wrote: > > Ideally, there should be a wait -e which waits for every child process but > exits on the first non zero exit code received. >
`while wait -n; do :; done' already does that -- Oğuz