6 lines
80 B
Plaintext
6 lines
80 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
mem="$(free -h | awk '/Mem:/ {print $3 "/" $2}')"
|
||
|
|
||
|
echo " $mem"
|