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

25 lines
457 B
Markdown
Raw Normal View History

2022-03-17 17:10:40 +05:30
# 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 ...}}`