tldr/pages/linux/top.md

33 lines
662 B
Markdown
Raw Normal View History

2015-11-24 13:37:43 +00:00
# top
> Display dynamic real-time information about running processes.
2021-06-28 23:48:24 +01:00
> More information: <https://manned.org/top>.
2015-11-24 13:37:43 +00:00
- Start `top`:
2015-11-24 13:37:43 +00:00
`top`
2016-06-22 12:05:00 +01:00
- Do not show any idle or zombie processes:
2015-11-24 13:37:43 +00:00
`top -i`
- Show only processes owned by given user:
2015-11-24 13:37:43 +00:00
`top -u {{username}}`
2015-11-24 13:37:43 +00:00
- Sort processes by a field:
`top -o {{field_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):
2016-06-22 12:05:00 +01:00
`top -p $(pgrep -d ',' {{process_name}})`
2016-06-22 12:05:00 +01:00
- Get help about interactive commands:
2015-11-24 13:37:43 +00:00
`?`