Is there a way to make bash job control quiet?

You can use parentheses to run a background command in a subshell, and that will silence the job control messages. For example:

(sleep 10 & )

Leave a Comment