mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
431 B
Plaintext
26 lines
431 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# free
|
|
|
|
> Display amount of free and used memory in the system.
|
|
> More information: <https://manned.org/free>.
|
|
|
|
- Display system memory:
|
|
|
|
`free`
|
|
|
|
- Display memory in Bytes/KB/MB/GB:
|
|
|
|
`free -{{b|k|m|g}}`
|
|
|
|
- Display memory in human-readable units:
|
|
|
|
`free {{[-h|--human]}}`
|
|
|
|
- Refresh the output every 2 seconds:
|
|
|
|
`free {{[-s|--seconds]}} 2`
|