mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-18 12:49:52 +00:00
Update cheatsheets
This commit is contained in:
29
linux/pmap
Normal file
29
linux/pmap
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 ...}}`
|
||||
Reference in New Issue
Block a user