Considera lo script semplice hello
:
#!/bin/bash
echo 'hello world!'
Ora da bash se provo a eseguire questo in background:
$ hello &
[1] 12345
$ hello world!
█ <--- prompt is stuck here until I hit enter!
[1]+ Done
$ █ <--- prompt back to normal
Quello che preferirei vedere:
$ hello &
[1] 12345
[1]+ hello world!
[1]+ Done
$ █ <--- prompt normal the whole time
Come posso cambiare il comportamento?