Quick how to for finding out the list of processes, including threads spawned by these processes
[code] ps -eLf | grep USERNAME [/code]
Explanation of the options
- e : Select all processes
- L : Show threads
- f : Extra full format
Quick how to for finding out the list of processes, including threads spawned by these processes
[code] ps -eLf | grep USERNAME [/code]
Explanation of the options