Processes of a user

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". :frowning:

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...