Last Updated: February 25, 2016
·
378
· zhekanax

Bash process manipulations

To run command in background just add & (an ampersand) to end

$ sleep 50 &

If you already got running process, you can pause it by pressing Ctrl + z</code>. Then send it to background by executing

$ bg

or bring it back to foreground

$ fg