Ir para o conteúdo
ou

Software livre Brasil

 Voltar a CommandLineFu
Tela cheia Sugerir um artigo

Search for a process by name

20 de Abril de 2015, 13:09 , por Commands with 10 up-votes - 0sem comentários ainda | Ninguém está seguindo este artigo ainda.
Visualizado 59 vezes
$ ps -fC PROCESSNAME

ps and grep is a dangerous combination -- grep tries to match everything on each line (thus the all too common: grep -v grep hack). ps -C doesn't use grep, it uses the process table for an exact match. Thus, you'll get an accurate list with: ps -fC sh rather finding every process with sh somewhere on the line.

commandlinefu.com

Diff your entire server config at ScriptRock.com


Fonte: http://www.commandlinefu.com/commands/view/14172/search-for-a-process-by-name

0sem comentários ainda

Enviar um comentário

Os campos são obrigatórios.

Se você é um usuário registrado, pode se identificar e ser reconhecido automaticamente.