How do you know about running processes of a particular
user?
Answers were Sorted based on User's Feedback
Answer / lekshmanan s
ps -ef|grep $(whoami)
$(whoami) gives the username and that is grep(ed or
searched) in ps -ef
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / punit sharma
ps -u <username> can provide the processes running for the
user.
ps -fu <username> can provide the full listing of the
processes running for the user
| Is This Answer Correct ? | 1 Yes | 1 No |
What is merge command in unix?
their is a file1,file2 and i want to append file1 data to file2?
What does sed command do in unix?
in UNIX,what is the command to remove directory with files?
What difference between cmp and diff commands?
How to delete a directory containing files and folders?
Can you write a command to erase all files in the current directory including all its sub-directories?
what is the use of wild cards?
What are filter commands in unix?
what is ls -ltd?
What are the differences among a system call, a library function, and a unix command?
How do you copy a directory with many files and folders into another directory?