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

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.