1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-16 07:35:24 +02:00
tldr/pages/linux/free.md
2025-03-12 21:05:58 +02:00

20 lines
343 B
Markdown

# 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}}`