Considérez le script simple hello
:
#!/bin/bash
echo 'hello world!'
Maintenant, depuis bash, si j'essaie de l'exécuter en arrière-plan:
$ hello &
[1] 12345
$ hello world!
█ <--- prompt is stuck here until I hit enter!
[1]+ Done
$ █ <--- prompt back to normal
Ce que je préfère voir:
$ hello &
[1] 12345
[1]+ hello world!
[1]+ Done
$ █ <--- prompt normal the whole time
Comment puis-je changer le comportement?