Answers for "detach process from terminal and get pid"

2

ubuntu get pid of process

#to search for pid
ps ax | grep firefox
#and to kill it run
sudo kill -9 THE_PID_NUMBER
Posted by: Guest on April-15-2021
0

detach process from its terminal

nohup cmd &
Posted by: Guest on November-01-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language