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

226 B

background.

you can run stuff in background even after you close the shell with nohup.

nohup foo & disown # will always run in background.

better approach would be to use tmux, but that's another huge topic.