Continue Running A Script After Closing The Terminal |
Have you ever wanted to leave a terminal session before your command has finished running. "^z" means to press your control button and the "z" button at the same time, it will not function as a pasted command. ^z ← "ctrl-z" bg disown %1 exit This will stop the current command, send it to process in the background, disown it, and then finally close the session... |



