In zsh, I want to send every process to background so that I can continue typing in the terminal if a process takes longer than I expected. Instead of having to write &
at the end of every command or having to do Ctrl + Z
to freeze it and bg
to send it to background. Also I want the process to continue if I close the terminal, so I want to disown it. Can this be done by default with some zsh setting?
Ask specific questions about how to code something in sh, bash, zsh, etc
General bash discussion on lemmy.ml
Create Post From:
lemmy.ml
Heres a good response on SO: https://unix.stackexchange.com/questions/223432/in-zsh-how-can-i-more-quickly-disown-the-foreground-process/223433#223433
Sounds like you want termux