Bash-ps-examples: Difference between revisions

From I Will Fear No Evil
Jump to navigation Jump to search
(Created page with "== Generic Page of PS options == === threads from process === See the threads for a given process * [https://serverfault.com/questions/932406/how-to-tell-threads-from-processes-in-top-and-ps-on-linux show threads from process] <pre> ps aux |grep processName ps -fly -T -p PID </pre>")
 
mNo edit summary
 
Line 8: Line 8:
ps -fly -T -p PID
ps -fly -T -p PID
</pre>
</pre>
[[Category:Bash]]

Latest revision as of 09:35, 10 April 2025

Generic Page of PS options

threads from process

See the threads for a given process

ps aux |grep processName
ps -fly -T -p PID