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

6 lines
235 B
Markdown

# disowning.
you can continue using shell when program is running in the background, but if you close this shell the program will terminate.
```bash
foo & disown # foo keeps printing output, but we can run more stuff when we want.
```