Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/procs Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`
- List all processes as a tree:
`procs --tree`
- List information about processes, if the commands which started them contain `zsh`:
`procs {{zsh}}`
- List information about all processes sorted by CPU time in [a]scending or [d]escending order:
`procs {{--sorta|--sortd}} cpu`
- List information about processes with either a PID, command, or user containing `41` or `firefox`:
`procs --or {{PID|command|user}} {{41}} {{firefox}}`
- List information about processes with both PID `41` and a command or user containing `zsh`:
`procs --and {{41}} {{zsh}}`