mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 11:35:26 +02:00
pmap: add page (#7890)
This commit is contained in:
parent
e7a06bac28
commit
c29f0d16d5
1 changed files with 24 additions and 0 deletions
24
pages/linux/pmap.md
Normal file
24
pages/linux/pmap.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# pmap
|
||||
|
||||
> Report memory map of a process or processes.
|
||||
> More information: <https://manned.org/pmap>.
|
||||
|
||||
- Print memory map for a specific process id (PID):
|
||||
|
||||
`pmap {{pid}}`
|
||||
|
||||
- Show the extended format:
|
||||
|
||||
`pmap --extended {{pid}}`
|
||||
|
||||
- Show the device format:
|
||||
|
||||
`pmap --device {{pid}}`
|
||||
|
||||
- Limit results to a memory address range specified by `low` and `high`:
|
||||
|
||||
`pmap --range {{low}},{{high}}`
|
||||
|
||||
- Print memory maps for multiple processes:
|
||||
|
||||
`pmap {{pid1 pid2 ...}}`
|
Loading…
Add table
Reference in a new issue