wiki/linux/bash/basic/BackgroundWork.md
2024-09-25 20:08:22 +03:00

7 lines
226 B
Markdown

# 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.