# phpman > man > pmap(1)

> **TLDR:** Report memory map of a process or processes.
>
- 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 ...}}`

*Source: tldr-pages*

---

[PMAP(1)](https://www.chedong.com/phpMan.php/man/PMAP/1/markdown)                                     User Commands                                    [PMAP(1)](https://www.chedong.com/phpMan.php/man/PMAP/1/markdown)



## NAME
       pmap - report memory map of a process

## SYNOPSIS
       **pmap** [_options_] _pid_ [...]

## DESCRIPTION
       The **pmap** command reports the memory map of a process or processes.

## OPTIONS
### -x --extended
              Show the extended format.

### -d --device
              Show the device format.

### -q --quiet
              Do not display some header or footer lines.

### -A --range
              Limit  results  to the given range to _low_ and _high_ address range.  Notice that the low
              and high arguments are single string separated with comma.

### -X -x
              _/proc/PID/smaps_

### -XX

### -p --show-path
              Show full path to files in the mapping column

### -c --read-rc
              Read the default configuration

### -C --read-rc-from
              Read the configuration from _file_

### -n --create-rc
              Create new default configuration

### -N --create-rc-to
              Create new configuration to _file_

### -h --help
              Display help text and exit.

### -V --version
              Display version information and exit.

## EXIT STATUS
              **0**      Success.
              **1**      Failure.
              **42**     Did not find all processes asked for.

## SEE ALSO
       [**ps**(1)](https://www.chedong.com/phpMan.php/man/ps/1/markdown), [**pgrep**(1)](https://www.chedong.com/phpMan.php/man/pgrep/1/markdown)

## STANDARDS
       No standards apply, but **pmap** looks an awful lot like a SunOS command.

## REPORTING BUGS
       Please send bug reports to ⟨<procps@freelists.org>⟩



procps-ng                                    2020-06-04                                      [PMAP(1)](https://www.chedong.com/phpMan.php/man/PMAP/1/markdown)
