dotfiles/scripts/memorystat
tavo-wasd fd69ecbbe6 init
2023-05-08 20:39:39 -06:00

4 lines
127 B
Bash
Executable file

#!/bin/sh
# Get current RAM memory usage
free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.1fG", ( $3 / 1024), ($2 / 1024))}'