Skip to content

Commit 6f3ef64

Browse files
committed
simplify memory usage formula
1 parent 12b97d2 commit 6f3ef64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ free -m -s 1 | stdbuf -o0 grep "^Mem:" | stdbuf -o0 tr -s " " | stdbuf -o0 cut -
9696
### memory usage on macOS
9797

9898
```
99-
vm_stat 1 | awk '{ print int($2)*4096/1024^3; fflush(); }' | ttyplot -t "MacOS Memory Usage" -u GB
99+
vm_stat 1 | awk '{ print int($2)/2^18; fflush(); }' | ttyplot -t "MacOS Memory Usage" -u GB
100100
```
101101

102102
### number of processes in running and io blocked state

0 commit comments

Comments
 (0)