Find for the user pene all running process named "firefox"
[pene@donunix] ps -u pene | grep firefox
Find all running process named "firefox"
tags :
shell-script
Subscribe to:
Post Comments (Atom)
Welcome to Don Unix
The main purpose of this blog is to show you some interesting Unix and Linux Tips'n Tricks.
I hope you'll enjoy it
Find for the user pene all running process named "firefox"
[pene@donunix] ps -u pene | grep firefox
1 comment:
Par contre, quand on grep un ps aux, ça affiche aussi le processus du grep, une petite astuce permet de s'en affranchir :
ps aux | grep [f]irefox
Post a Comment