1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/procs.md

29 lines
794 B
Markdown
Raw Normal View History

2021-08-08 21:15:49 +05:30
# procs
> Display information about the active processes.
> More information: <https://github.com/dalance/procs>.
- List all processes showing the PID, user, CPU usage, memory usage, and the command which started them:
`procs`
2023-08-23 03:57:44 -03:00
- List all processes as a tree:
`procs --tree`
- List information about processes, if the commands which started them contain `zsh`:
2021-08-08 21:15:49 +05:30
`procs {{zsh}}`
- List information about all processes sorted by CPU time in [a]scending or [d]escending order:
2021-08-08 21:15:49 +05:30
`procs {{--sorta|--sortd}} cpu`
2021-08-08 21:15:49 +05:30
- List information about processes with either a PID, command, or user containing `41` or `firefox`:
2021-08-08 21:15:49 +05:30
`procs --or {{PID|command|user}} {{41}} {{firefox}}`
- List information about processes with both PID `41` and a command or user containing `zsh`:
2021-08-08 21:15:49 +05:30
`procs --and {{41}} {{zsh}}`