3 lines
123 B
Bash
Executable file
3 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
printf "%b" " "
|
|
free --mega | sed -n '2{p;q}' | awk '{printf ("%2.2fG/%2.2fG\n", ($3 / 1000), ($2 / 1000))}'
|