Tag: linux
-
To set a background job from the terminal in Linux
If you run a command from the shell terminal, and you realise that it is going to run a while, you can put it into the background first ctrl-z which suspends it, then bg which starts it running in background, then disown -h which detaches the job from your session, this is important as if you exit […]