4 lines
87 B
Text
4 lines
87 B
Text
|
#!/bin/bash
|
||
|
mem="$(free -h | awk '/^Mem:/ {print $3 "/" $2}')"
|
||
|
echo -e " RAM: [$mem] "
|