We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f43fa4c commit 771a0e9Copy full SHA for 771a0e9
ebook/en/content/018-the-free-command.md
@@ -10,7 +10,7 @@ The `free` command in Linux/Unix is used to show memory (RAM/SWAP) information.
10
--- Output the memory usage - available and used, as well as swap
11
12
**Details:**
13
---- Outputted values are not human-readable (are in bytes)
+--- The values are shown in kibibytes by default.
14
15
**Command:**
16
```
@@ -29,3 +29,15 @@ free
29
30
free -h
31
32
+## Show memory usage with a total line
33
+
34
+**Action:**
35
+--- Output the memory usage and also add a summary line with the total.
36
37
+**Details:**
38
+--- The `-t` flag is useful for seeing the combined total of memory and swap.
39
40
+**Command:**
41
+```
42
+free -t
43
0 commit comments