diff --git a/pages/linux/top.md b/pages/linux/top.md index 28d93278f7..0831e04e32 100644 --- a/pages/linux/top.md +++ b/pages/linux/top.md @@ -14,6 +14,10 @@ `top -u {{user_name}}` +- Show the individual threads of a given process: + +`top -Hp {{process_id}}` + - Show only the processes with the given PID(s), passed as a comma-separated list. (Normally you wouldn't know PIDs off hand. This example picks the PIDs from the process name): `top -p $(pgrep -d ',' {{process_name}})`