Hi,
Please can some one advise how can we get all the processes corresponding to a particular user.
Cheers,
Shazin
Hi,
Please can some one advise how can we get all the processes corresponding to a particular user.
Cheers,
Shazin
ps -u USER
Hi,
Many thanks this command I know but I want to use wild cards to generalize my search. Please advise.
Best Regards,
Shazin
But you said "a particular user". 
ps -ef | grep ^PATTERN
You can use the commands
ps -fu <Username>
top -c -u <username>
lsof -u <username>
pstree -aGp | grep userneme
Hope this will help you...