wiki/linux/bash/basic/BackgroundWork.md

7 lines
226 B
Markdown
Raw Normal View History

# background.
you can run stuff in background even after you close the shell with `nohup`.
```bash
nohup foo & disown # will always run in background.
```
better approach would be to use `tmux`, but that's another huge topic.