Answers for "stop process cmd linux"

3

kill process cmd

netstat -ano | findstr :3000
taskkill /PID "123" /F
Posted by: Guest on May-24-2020
2

how to kill a process with linux

ps ux #list the running proccess
kill -9 <PID>
Posted by: Guest on January-23-2021

Browse Popular Code Answers by Language