Answers for "centos run command in background"

0

centos run command in background

# to make the command work in the backgroud add & after it 
command &
to check running commands on background 
jobs -l

to kill the command with the proccess ID
kill -9 25177
Posted by: Guest on March-31-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language