1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 17:19:47 +01:00
tldr/pages/linux/free.md
2021-08-15 19:59:09 +02:00

20 lines
313 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`
- Refresh the output every 2 seconds:
`free -s {{2}}`