diff --git a/pages/linux/free.md b/pages/linux/free.md new file mode 100644 index 000000000..1ae386ac8 --- /dev/null +++ b/pages/linux/free.md @@ -0,0 +1,19 @@ +# free + +> Display amount of free and used memory in the system + +- Display system memory + +`free` + +- Display memory in Bytes/KB/MB/GB + +`free {{-b/-k/-m/-g}}` + +- Display memory in human readable units + +`free -h` + +- Continuous monitor memory (refresh every X seconds) + +`free -s {{X}}`