when typing pgrep wget, it show process id 10144

but how to know what is the details of this process id

link|improve this question

0% accept rate
What details do you want to know ? – Iain Dec 19 '10 at 12:20
All I want is: what is the command for the id. because I use wget frequently, sometime I forgot an id is belong to which command – kopeklan Dec 19 '10 at 12:25
feedback

2 Answers

Use the -f and -l parameter:

pgrep -fl wget
link|improve this answer
feedback

use the ps command:

ps ax | grep wget | grep -v grep
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.