Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
grep -I -n -H -I -- process a binary file as if it did not contain matching data; -n -- prefix each line of output with the 1-based line number within its input file -H -- print the file name for each match grep -RInH "Pomeo" /*
> ps axuw | grep -i '<Ваш фильтр>' | grep -v 'grep' | awk '{print $2}' | xargs kill -9
pgrep '<Ваш фильтр>' | xargs kill -9
pkill '<Имя процесса>'