I have a bash function that runs a few sub-processes in parallel, like this:
#!/bin/bash
function check() {
set +m
for f in foo bar ; do
(
if [ -f $f ] ; then ls -la $f >> all; fi
) &
done
wait
}
On sourcing and running this (. scriptfile; check
), the +m
has successfully suppressed job completion output, but it still shows process IDs on creation, like:
[1] 123
[2] 456
How could those ID lines be suppressed?