Quick how to for finding out the list of processes, including threads spawned by these processes

ps -eLf | grep USERNAME

Explanation of the options

  • e : Select all processes
  • L : Show threads
  • f : Extra full format

HOW TO : Check number of processes (including threads) being run/executed by a user in Linux

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