Answer the question
In order to leave comments, you need to log in
What is the equivalent of this command in Windows?
On Linux (and macOS too), in order to kill a process, you need to write the following lines of code in the terminal:
ps axuw | grep -i '<Ваш фильтр>' | grep -v 'grep' | awk '{print $2}' | xargs kill -9
Answer the question
In order to leave comments, you need to log in
> ps axuw | grep -i '<Ваш фильтр>' | grep -v 'grep' | awk '{print $2}' | xargs kill -9
pgrep '<Ваш фильтр>' | xargs kill -9
pkill '<Имя процесса>'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question