aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/wmsl-memory
blob: 60bdccb6448b299b0ffaadeb111fd05170c69e59 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Display memory usage

awk '/^MemTotal:/ {total=$2}
     /^MemAvailable:/ {avail=$2}
     END {
         used = total - avail
         printf "MEM %.1fG/%.1fG", used/1048576, total/1048576
     }' /proc/meminfo