wiki/help/linux/bash/basic/disown.md

235 B

disowning.

you can continue using shell when program is running in the background, but if you close this shell the program will terminate.

foo & disown # foo keeps printing output, but we can run more stuff when we want.